summaryrefslogtreecommitdiffstats
path: root/net/socket.c
diff options
context:
space:
mode:
authorBenjamin MARSILI2012-01-22 19:42:38 +0100
committerStefan Hajnoczi2012-02-10 11:44:52 +0100
commitda8d605733c9b368230a716cc71c7915902387db (patch)
tree7cc4a40e09bfc82161b02b8cc62bb2671beb2450 /net/socket.c
parentfmopl: Fix typo in function name (diff)
downloadqemu-da8d605733c9b368230a716cc71c7915902387db.tar.gz
qemu-da8d605733c9b368230a716cc71c7915902387db.tar.xz
qemu-da8d605733c9b368230a716cc71c7915902387db.zip
net: remove extra spaces in help messages
Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/socket.c b/net/socket.c
index d4c2002923..0bcf229c24 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -664,8 +664,8 @@ int net_init_socket(QemuOpts *opts,
qemu_opt_get(opts, "connect") ||
qemu_opt_get(opts, "listen") ||
qemu_opt_get(opts, "mcast")) {
- error_report("fd=, connect=, listen=\
- and mcast= is invalid with udp=");
+ error_report("fd=, connect=, listen="
+ " and mcast= is invalid with udp=");
return -1;
}
@@ -680,8 +680,8 @@ int net_init_socket(QemuOpts *opts,
return -1;
}
} else {
- error_report("-socket requires fd=, listen=, \
- connect=, mcast= or udp=");
+ error_report("-socket requires fd=, listen=,"
+ " connect=, mcast= or udp=");
return -1;
}
return 0;