diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 9225289..fecf816 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -529,7 +529,8 @@ int mount_main(int argc, char **argv) // Mount this thing. - if (singlemount(mtcur)) { + rc = singlemount(mtcur); + if(rc) { // Don't whine about already mounted fs when mounting all. // Note: we should probably change return value to indicate // failure, without causing a duplicate error message. |