diff options
author | Matt Kraai <kraai@debian.org> | 2001-01-17 00:12:11 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-01-17 00:12:11 +0000 |
commit | fd4c58d7c5a8cd8dd72ea5fc4eb16828be998792 (patch) | |
tree | 50055e86e632aa141acd0b8cec0bc6bb5026b82f | |
parent | 9aa23ba5a81b877fbd87d481570573020c33b9c9 (diff) | |
download | busybox-fd4c58d7c5a8cd8dd72ea5fc4eb16828be998792.tar.gz |
Fix the exit status of umount -a, a casualty of the TRUE/FALSE normalization.
Thanks to Francois-R Boyer <boyerf@IRO.UMontreal.CA> for the report.
-rw-r--r-- | umount.c | 8 | ||||
-rw-r--r-- | util-linux/umount.c | 8 |
2 files changed, 8 insertions, 8 deletions
@@ -212,18 +212,18 @@ static int umount_all(int useMtab) /* Never umount /proc on a umount -a */ if (strstr(mountpt, "proc")!= NULL) continue; - status = do_umount(mountpt, useMtab); - if (status != 0) { + if (!do_umount(mountpt, useMtab)) { /* Don't bother retrying the umount on busy devices */ if (errno == EBUSY) { perror_msg("%s", mountpt); + status = FALSE; continue; } - status = do_umount(mountpt, useMtab); - if (status != 0) { + if (!do_umount(mountpt, useMtab)) { printf("Couldn't umount %s on %s: %s\n", mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE), strerror(errno)); + status = FALSE; } } } diff --git a/util-linux/umount.c b/util-linux/umount.c index 0867118c0..40d25f90a 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c @@ -212,18 +212,18 @@ static int umount_all(int useMtab) /* Never umount /proc on a umount -a */ if (strstr(mountpt, "proc")!= NULL) continue; - status = do_umount(mountpt, useMtab); - if (status != 0) { + if (!do_umount(mountpt, useMtab)) { /* Don't bother retrying the umount on busy devices */ if (errno == EBUSY) { perror_msg("%s", mountpt); + status = FALSE; continue; } - status = do_umount(mountpt, useMtab); - if (status != 0) { + if (!do_umount(mountpt, useMtab)) { printf("Couldn't umount %s on %s: %s\n", mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE), strerror(errno)); + status = FALSE; } } } |