From: Yu Watanabe Date: Fri, 1 Sep 2017 08:03:01 +0000 (+0900) Subject: systemd-mount: fix that wrong argument is used for arg_mount_what X-Git-Tag: v235~168^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4185da7c4daf32bd9b5809fd6de99e52cb903bba;p=thirdparty%2Fsystemd.git systemd-mount: fix that wrong argument is used for arg_mount_what --- diff --git a/src/mount/mount-tool.c b/src/mount/mount-tool.c index ed6578d5402..10bb5dda63a 100644 --- a/src/mount/mount-tool.c +++ b/src/mount/mount-tool.c @@ -344,9 +344,8 @@ static int parse_argv(int argc, char *argv[]) { arg_mount_what = canonicalize_file_name(p); if (!arg_mount_what) return log_error_errno(errno, "Failed to canonicalize path: %m"); - } else { - arg_mount_what = strdup(argv[optind+1]); + arg_mount_what = strdup(argv[optind]); if (!arg_mount_what) return log_oom();