summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Tosatti <mtosatti@redhat.com>2010-02-09 15:31:46 -0200
committerAnthony Liguori <aliguori@us.ibm.com>2010-02-23 14:07:58 -0600
commite03dd1a6c24d96d6ba4b154f2266c44c314c6688 (patch)
tree78fac086b1d6c936e09ffb01fb9b69d6bc8cfd52 /qemu-sockets.c
parentiothread: fix vcpu stop with smp tcg (diff)
downloadqemu-kvm-e03dd1a6c24d96d6ba4b154f2266c44c314c6688.tar.gz
qemu-kvm-e03dd1a6c24d96d6ba4b154f2266c44c314c6688.tar.bz2
qemu-kvm-e03dd1a6c24d96d6ba4b154f2266c44c314c6688.zip
fix inet_parse typo
qemu_opt_set wants on/off, not yes/no. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> (cherry picked from commit 2198a62eb2518b61c3fc7db26515f106e7498932)
Diffstat (limited to 'qemu-sockets.c')
-rw-r--r--qemu-sockets.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/qemu-sockets.c b/qemu-sockets.c
index 8850516f2..a88b2a77f 100644
--- a/qemu-sockets.c
+++ b/qemu-sockets.c
@@ -424,7 +424,7 @@ static int inet_parse(QemuOpts *opts, const char *str)
__FUNCTION__, str);
return -1;
}
- qemu_opt_set(opts, "ipv6", "yes");
+ qemu_opt_set(opts, "ipv6", "on");
} else if (qemu_isdigit(str[0])) {
/* IPv4 addr */
if (2 != sscanf(str,"%64[0-9.]:%32[^,]%n",addr,port,&pos)) {
@@ -432,7 +432,7 @@ static int inet_parse(QemuOpts *opts, const char *str)
__FUNCTION__, str);
return -1;
}
- qemu_opt_set(opts, "ipv4", "yes");
+ qemu_opt_set(opts, "ipv4", "on");
} else {
/* hostname */
if (2 != sscanf(str,"%64[^:]:%32[^,]%n",addr,port,&pos)) {
@@ -450,9 +450,9 @@ static int inet_parse(QemuOpts *opts, const char *str)
if (h)
qemu_opt_set(opts, "to", h+4);
if (strstr(optstr, ",ipv4"))
- qemu_opt_set(opts, "ipv4", "yes");
+ qemu_opt_set(opts, "ipv4", "on");
if (strstr(optstr, ",ipv6"))
- qemu_opt_set(opts, "ipv6", "yes");
+ qemu_opt_set(opts, "ipv6", "on");
return 0;
}