diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-02-09 11:59:15 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-02-09 17:09:15 +0100 |
commit | 150dcd1aed6f9ebcf370dbb9b666e7d7c6d908e2 (patch) | |
tree | 14fd6bf0ce27b77dac939f852abfeed3d835b9e0 /qemu-char.c | |
parent | c9a19d5b954fecc4deeb4b83c501ec2faffa88c4 (diff) |
qemu-char, io: fix ordering of arguments for UDP socket creation
Two wrongs make a right, but they should be fixed anyway.
Cc: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <1455015557-15106-1-git-send-email-pbonzini@redhat.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r-- | qemu-char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-char.c b/qemu-char.c index 84eb8a1fb4..2b2c56b87f 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -4386,7 +4386,7 @@ static CharDriverState *qmp_chardev_open_udp(const char *id, QIOChannelSocket *sioc = qio_channel_socket_new(); if (qio_channel_socket_dgram_sync(sioc, - udp->remote, udp->local, + udp->local, udp->remote, errp) < 0) { object_unref(OBJECT(sioc)); return NULL; |