search for: 85497a7

Displaying 2 results from an estimated 2 matches for "85497a7".

Did you mean: 7549747
2007 Feb 18
0
[PATCH] umount: Add -l option for lazy unmount
...t.altlinux.org/people/vsu/packages/klibc.git alt-umount (branch based on the klibc-1.4.32 release - sorry, forgot to send this patch earlier) usr/utils/umount.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/usr/utils/umount.c b/usr/utils/umount.c index 52aa18a..85497a7 100644 --- a/usr/utils/umount.c +++ b/usr/utils/umount.c @@ -17,13 +17,16 @@ int main(int argc, char *argv[]) progname = argv[0]; do { - c = getopt(argc, argv, "f"); + c = getopt(argc, argv, "fl"); if (c == EOF) break; switch (c) { case 'f': flag...
2008 Mar 25
2
bunch of small fixes
...e == NULL) { - fprintf(stderr, "Usage: %s [-r] [-w] [-o options] [-t type] " + fprintf(stderr, "Usage: %s [-r] [-w] [-o options] [-t type] [-f] [-i] " "[-n] device directory\n", progname); exit(1); } diff --git a/usr/utils/umount.c b/usr/utils/umount.c index 85497a7..4469297 100644 --- a/usr/utils/umount.c +++ b/usr/utils/umount.c @@ -17,7 +17,7 @@ int main(int argc, char *argv[]) progname = argv[0]; do { - c = getopt(argc, argv, "fl"); + c = getopt(argc, argv, "fli"); if (c == EOF) break; switch (c) { @@ -27,6 +27,9 @@ in...