diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-08-31 12:42:06 +0200 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-08-31 12:42:06 +0200 |
commit | 8d3e225a2d1d980bcedb825f294b6a8041fe3f1b (patch) | |
tree | bfd632b8dbc3bb25c23aa437ebd0d2ea37818fe9 /util-linux/mkfs_reiser.c | |
parent | 4e7dd3c363377aefd6ac60ab4335e773482bcca1 (diff) | |
download | busybox-w32-8d3e225a2d1d980bcedb825f294b6a8041fe3f1b.tar.gz busybox-w32-8d3e225a2d1d980bcedb825f294b6a8041fe3f1b.tar.bz2 busybox-w32-8d3e225a2d1d980bcedb825f294b6a8041fe3f1b.zip |
libbb: add xfstat function
function old new delta
xfstat - 25 +25
mkfs_ext2_main 2421 2423 +2
mkfs_reiser_main 1197 1194 -3
next 312 307 -5
ar_main 533 522 -11
mkfs_minix_main 2938 2924 -14
mkfs_vfat_main 1511 1495 -16
writeTarFile 272 255 -17
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/6 up/down: 27/-66) Total: -39 bytes
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'util-linux/mkfs_reiser.c')
-rw-r--r-- | util-linux/mkfs_reiser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mkfs_reiser.c b/util-linux/mkfs_reiser.c index 6e172d6d3..00ce8f1d1 100644 --- a/util-linux/mkfs_reiser.c +++ b/util-linux/mkfs_reiser.c | |||
@@ -168,9 +168,9 @@ int mkfs_reiser_main(int argc UNUSED_PARAM, char **argv) | |||
168 | 168 | ||
169 | // check the device is a block device | 169 | // check the device is a block device |
170 | fd = xopen(argv[0], O_WRONLY | O_EXCL); | 170 | fd = xopen(argv[0], O_WRONLY | O_EXCL); |
171 | fstat(fd, &st); | 171 | xfstat(fd, &st, argv[0]); |
172 | if (!S_ISBLK(st.st_mode) && !(option_mask32 & OPT_f)) | 172 | if (!S_ISBLK(st.st_mode) && !(option_mask32 & OPT_f)) |
173 | bb_error_msg_and_die("not a block device"); | 173 | bb_error_msg_and_die("%s: not a block device", argv[0]); |
174 | 174 | ||
175 | // check if it is mounted | 175 | // check if it is mounted |
176 | // N.B. what if we format a file? find_mount_point will return false negative since | 176 | // N.B. what if we format a file? find_mount_point will return false negative since |