commit | ba98603264125aceac59c36a36dfbee0f7f67c7f | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Tue Sep 15 23:00:09 2009 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Tue Sep 15 23:00:09 2009 +0200 |
tree | 364bbad65a97c5029805fcff9ee3603975631af6 | |
parent | 772c2db9716f2aa255a5316b3435899b00483dde [diff] [blame] |
mount: do not execute "mount.(null)" :) Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/util-linux/mount.c b/util-linux/mount.c index 56c32e1..478dc24 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c
@@ -448,7 +448,7 @@ // If mount failed, try // helper program mount.<mnt_type> - if (HELPERS_ALLOWED && rc) { + if (HELPERS_ALLOWED && rc && mp->mnt_type) { char *args[8]; int errno_save = errno; args[0] = xasprintf("mount.%s", mp->mnt_type);