summaryrefslogtreecommitdiff
path: root/mount.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-06 15:55:23 +0000
committerMatt Kraai <kraai@debian.org>2000-12-06 15:55:23 +0000
commit92ed8a351908d60966fd9498574c9e6ace7bd5ab (patch)
treee02182bd51b722505acc3a0b571d25e147a2efca /mount.c
parentab147f608d1215a9208e6d1fe93b6532a707dae4 (diff)
downloadbusybox-w32-92ed8a351908d60966fd9498574c9e6ace7bd5ab.tar.gz
busybox-w32-92ed8a351908d60966fd9498574c9e6ace7bd5ab.tar.bz2
busybox-w32-92ed8a351908d60966fd9498574c9e6ace7bd5ab.zip
Fix exit status on failure.
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mount.c b/mount.c
index 34dbb5eee..ff8aef379 100644
--- a/mount.c
+++ b/mount.c
@@ -493,8 +493,9 @@ singlemount:
493 } 493 }
494 } 494 }
495#endif 495#endif
496 rc = mount_one(device, directory, filesystemType, flags, 496 if (!mount_one(device, directory, filesystemType, flags,
497 string_flags, useMtab, fakeIt, extra_opts, TRUE); 497 string_flags, useMtab, fakeIt, extra_opts, TRUE))
498 rc = EXIT_FAILURE;
498 499
499 if (all == FALSE) 500 if (all == FALSE)
500 break; 501 break;