diff options
author | Denys Vlasenko | 2009-07-18 16:22:26 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-07-18 16:22:26 +0200 |
commit | 6ae6426a7485b5835c23aea198b3065f491d918b (patch) | |
tree | 79ebcee570986e27d7137720ca3139af277a162b /util-linux/mkfs_vfat.c | |
parent | b71ce023e9527b6afaa497ce62ca53a74cf94cef (diff) | |
download | busybox-6ae6426a7485b5835c23aea198b3065f491d918b.zip busybox-6ae6426a7485b5835c23aea198b3065f491d918b.tar.gz |
fix mountpoint test to not prevemt mkfs_xxx from making image in any file
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mkfs_vfat.c')
-rw-r--r-- | util-linux/mkfs_vfat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mkfs_vfat.c b/util-linux/mkfs_vfat.c index dff10f9..bdd4dd8 100644 --- a/util-linux/mkfs_vfat.c +++ b/util-linux/mkfs_vfat.c @@ -279,7 +279,7 @@ int mkfs_vfat_main(int argc UNUSED_PARAM, char **argv) ) bb_error_msg_and_die("will not try to make filesystem on full-disk device (use -I if wanted)"); // can't work on mounted filesystems - if (find_mount_point(device_name)) + if (find_mount_point(device_name, 0)) bb_error_msg_and_die("can't format mounted filesystem"); #endif // get true sector size |