Displaying 1 result from an estimated 1 matches for "52aa18a".
Did you mean:
52a748a
2007 Feb 18
0
[PATCH] umount: Add -l option for lazy unmount
...git://git.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':...