diff options
Diffstat (limited to 'e2fsprogs/ext2fs/mkdir.c')
-rw-r--r-- | e2fsprogs/ext2fs/mkdir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e2fsprogs/ext2fs/mkdir.c b/e2fsprogs/ext2fs/mkdir.c index 81e7aea58..bf46e5050 100644 --- a/e2fsprogs/ext2fs/mkdir.c +++ b/e2fsprogs/ext2fs/mkdir.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * mkdir.c --- make a directory in the filesystem | 2 | * mkdir.c --- make a directory in the filesystem |
3 | * | 3 | * |
4 | * Copyright (C) 1994, 1995 Theodore Ts'o. | 4 | * Copyright (C) 1994, 1995 Theodore Ts'o. |
5 | * | 5 | * |
6 | * %Begin-Header% | 6 | * %Begin-Header% |
@@ -94,7 +94,7 @@ errcode_t ext2fs_mkdir(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t inum, | |||
94 | retval = ext2fs_write_dir_block(fs, blk, block); | 94 | retval = ext2fs_write_dir_block(fs, blk, block); |
95 | if (retval) | 95 | if (retval) |
96 | goto cleanup; | 96 | goto cleanup; |
97 | retval = ext2fs_write_new_inode(fs, ino, &inode); | 97 | retval = ext2fs_write_new_inode(fs, ino, &inode); |
98 | if (retval) | 98 | if (retval) |
99 | goto cleanup; | 99 | goto cleanup; |
100 | 100 | ||
@@ -125,7 +125,7 @@ errcode_t ext2fs_mkdir(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t inum, | |||
125 | if (retval) | 125 | if (retval) |
126 | goto cleanup; | 126 | goto cleanup; |
127 | } | 127 | } |
128 | 128 | ||
129 | /* | 129 | /* |
130 | * Update accounting.... | 130 | * Update accounting.... |
131 | */ | 131 | */ |