]> git.proxmox.com Git - mirror_qemu.git/commitdiff
vl: Fix error location of positional arguments
authorMarkus Armbruster <armbru@redhat.com>
Mon, 18 Mar 2019 18:33:12 +0000 (19:33 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Tue, 2 Apr 2019 11:30:25 +0000 (13:30 +0200)
We blame badness in positional arguments on the last option argument:

    $ qemu-system-x86_64 -vnc :1 bad.img
    qemu-system-x86_64: -vnc :1: Could not open 'foo': No such file or directory

I believe we've done this ever since we reported locations.  Fix it to

    qemu-system-x86_64: bad.img: Could not open 'bad.img': No such file or directory

Reported-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190318183312.4684-1-armbru@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
vl.c

diff --git a/vl.c b/vl.c
index d61d5604e5af0fd849e083bafcf6d9d0392f1495..24572de0bd934d60aecc77c9bc24918b1ddec797 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -3119,6 +3119,7 @@ int main(int argc, char **argv, char **envp)
         if (optind >= argc)
             break;
         if (argv[optind][0] != '-') {
+            loc_set_cmdline(argv, optind, 1);
             drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
         } else {
             const QEMUOption *popt;