diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-28 14:50:49 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-28 14:50:49 +0000 |
commit | 352009371aa7244b96c1bf142d19f49340739542 (patch) | |
tree | 508f3aaba1ed617e1e9f4594995d2f67be987a42 /util/fusermount.c | |
parent | 4cecc259adb642b3f24130ac0fc9f1f394eb139d (diff) | |
download | libfuse-352009371aa7244b96c1bf142d19f49340739542.tar.gz |
fix
Diffstat (limited to 'util/fusermount.c')
-rw-r--r-- | util/fusermount.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/util/fusermount.c b/util/fusermount.c index 6ccc58e..87dfaa8 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -92,7 +92,7 @@ static int do_unmount(const char *mnt, int quiet, int lazy) return res; } -#ifndef USE_UCLIBC +#ifndef IGNORE_MTAB /* use a lock file so that multiple fusermount processes don't try and modify the mtab file at once! */ static int lock_mtab(void) @@ -291,7 +291,7 @@ static int unmount_fuse(const char *mnt, int quiet, int lazy) } return 0; } -#else /* USE_UCLIBC */ +#else /* IGNORE_MTAB */ static int lock_mtab() { return 0; @@ -321,7 +321,7 @@ static int unmount_fuse(const char *mnt, int quiet, int lazy) { return do_unmount(mnt, quiet, lazy); } -#endif +#endif /* IGNORE_MTAB */ static void strip_line(char *line) { @@ -987,6 +987,7 @@ static void usage(void) "%s: [options] mountpoint\n" "Options:\n" " -h print help\n" + " -v print version\n" " -o opt[,opt...] mount options\n" " -u unmount\n" " -q quiet\n" |