summary refs log tree commit diff stats
path: root/net/socket.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-06-27 11:25:23 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-06-27 11:25:23 -0500
commitbb820c03e2d638038fd48f42ee71e4004e55aba8 (patch)
tree43266acaef2a63fcd06de565a42c264a4f71e95f /net/socket.c
parent2fb0c09f4ff036f68474277ed4edc036f6529de8 (diff)
parent20fa53ece42bec6ce5db801bead125277b26ab8a (diff)
downloadfocaccia-qemu-bb820c03e2d638038fd48f42ee71e4004e55aba8.tar.gz
focaccia-qemu-bb820c03e2d638038fd48f42ee71e4004e55aba8.zip
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/socket.c b/net/socket.c
index 7337f4fa10..bc1bf58894 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -530,7 +530,7 @@ int net_init_socket(QemuOpts *opts,
             qemu_opt_get(opts, "connect") ||
             qemu_opt_get(opts, "mcast") ||
             qemu_opt_get(opts, "localaddr")) {
-            error_report("listen=, connect=, mcast= and localaddr= is invalid with fd=\n");
+            error_report("listen=, connect=, mcast= and localaddr= is invalid with fd=");
             return -1;
         }
 
@@ -550,7 +550,7 @@ int net_init_socket(QemuOpts *opts,
             qemu_opt_get(opts, "connect") ||
             qemu_opt_get(opts, "mcast") ||
             qemu_opt_get(opts, "localaddr")) {
-            error_report("fd=, connect=, mcast= and localaddr= is invalid with listen=\n");
+            error_report("fd=, connect=, mcast= and localaddr= is invalid with listen=");
             return -1;
         }
 
@@ -566,7 +566,7 @@ int net_init_socket(QemuOpts *opts,
             qemu_opt_get(opts, "listen") ||
             qemu_opt_get(opts, "mcast") ||
             qemu_opt_get(opts, "localaddr")) {
-            error_report("fd=, listen=, mcast= and localaddr= is invalid with connect=\n");
+            error_report("fd=, listen=, mcast= and localaddr= is invalid with connect=");
             return -1;
         }