aboutsummaryrefslogtreecommitdiff
path: root/lib/ext2fs/mkdir.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>1997-10-25 04:16:53 +0000
committerTheodore Ts'o <tytso@mit.edu>1997-10-25 04:16:53 +0000
commitc555aebde40afdc0d15d674f2c81c0e05cfded3f (patch)
treeedd6191c9ba2a2f26a4484a94baa89ff5ddde9ce /lib/ext2fs/mkdir.c
parentf13048113f09def05a024470bfeaf44635bf7e98 (diff)
downloade2fsprogs-c555aebde40afdc0d15d674f2c81c0e05cfded3f.tar.gz
Many files:
alloc.c (ext2fs_alloc_block): New function which allocates a block and updates the filesystem accounting records appropriately. ext2_err.et.in: Added new error codes: EXT2_NO_MEMORY, EXT2_INVALID_ARGUMENT, EXT2_BLOCK_ALLOC_FAIL, EXT2_INODE_ALLOC_FAIL, EXT2_NOT_DIRECTORY Change various library files to use these functions instead of EINVAL, ENOENT, etc. ChangeLog, pass1.c, pass3.c: pass3.c (get_lost_and_found): Check error return of EXT2_FILE_NOT_FOUND instead of ENOTDIR pass1.c (pass1_check_directory): Return EXT2_NO_DIRECTORY instead of ENOTDIR expect.icount: Change expected error string to be "Invalid argument passed to ext2 library" instead of just "Invalid argument"
Diffstat (limited to 'lib/ext2fs/mkdir.c')
-rw-r--r--lib/ext2fs/mkdir.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/ext2fs/mkdir.c b/lib/ext2fs/mkdir.c
index 2bfceb91..4a9f8242 100644
--- a/lib/ext2fs/mkdir.c
+++ b/lib/ext2fs/mkdir.c
@@ -23,9 +23,6 @@
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
-#if HAVE_ERRNO_H
-#include <errno.h>
-#endif
#include <linux/ext2_fs.h>
@@ -114,7 +111,7 @@ errcode_t ext2fs_mkdir(ext2_filsys fs, ino_t parent, ino_t inum,
name = 0;
goto cleanup;
}
- if (retval != ENOENT)
+ if (retval != EXT2_FILE_NOT_FOUND)
goto cleanup;
retval = ext2fs_link(fs, parent, name, ino, 0);
if (retval)