diff options
author | Matt Kraai | 2000-12-06 15:55:23 +0000 |
---|---|---|
committer | Matt Kraai | 2000-12-06 15:55:23 +0000 |
commit | 92ed8a351908d60966fd9498574c9e6ace7bd5ab (patch) | |
tree | e02182bd51b722505acc3a0b571d25e147a2efca /mount.c | |
parent | ab147f608d1215a9208e6d1fe93b6532a707dae4 (diff) | |
download | busybox-92ed8a351908d60966fd9498574c9e6ace7bd5ab.zip busybox-92ed8a351908d60966fd9498574c9e6ace7bd5ab.tar.gz |
Fix exit status on failure.
Diffstat (limited to 'mount.c')
-rw-r--r-- | mount.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -493,8 +493,9 @@ singlemount: } } #endif - rc = mount_one(device, directory, filesystemType, flags, - string_flags, useMtab, fakeIt, extra_opts, TRUE); + if (!mount_one(device, directory, filesystemType, flags, + string_flags, useMtab, fakeIt, extra_opts, TRUE)) + rc = EXIT_FAILURE; if (all == FALSE) break; |