aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2019-03-18 19:33:12 +0100
committerMarkus Armbruster <armbru@redhat.com>2019-04-02 13:30:25 +0200
commit17f30eae122a0a336dfe96cd525c96007414f7fb (patch)
treef43a5aa504940d7a9c7f12bf0e6e33f9c2f38a1a
parentd61d1a1fb2f1db6c54651844a28389c523f3f8c7 (diff)
downloadqemu-17f30eae122a0a336dfe96cd525c96007414f7fb.zip
qemu-17f30eae122a0a336dfe96cd525c96007414f7fb.tar.gz
qemu-17f30eae122a0a336dfe96cd525c96007414f7fb.tar.bz2
vl: Fix error location of positional arguments
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>
-rw-r--r--vl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vl.c b/vl.c
index d61d560..24572de 100644
--- 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;