Changeset 0be3e8b in mainline


Ignore:
Timestamp:
2009-05-06T18:39:31Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a248234
Parents:
770d281
Message:

Do not attempt to unlink non-empty FAT directories.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_ops.c

    r770d281 r0be3e8b  
    555555        if (!parentp)
    556556                return EBUSY;
     557       
     558        if (fat_has_children(cfn))
     559                return ENOTEMPTY;
    557560
    558561        futex_down(&parentp->lock);
Note: See TracChangeset for help on using the changeset viewer.