From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60576) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RvokJ-0001D5-GR for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:34:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RvokF-0006zR-6K for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:34:31 -0500 Received: from e06smtp11.uk.ibm.com ([195.75.94.107]:40239) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RvokE-0006z9-P9 for qemu-devel@nongnu.org; Fri, 10 Feb 2012 06:34:27 -0500 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 10 Feb 2012 11:34:26 -0000 Received: from d06av03.portsmouth.uk.ibm.com (d06av03.portsmouth.uk.ibm.com [9.149.37.213]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q1ABYMch1564706 for ; Fri, 10 Feb 2012 11:34:22 GMT Received: from d06av03.portsmouth.uk.ibm.com (localhost.localdomain [127.0.0.1]) by d06av03.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q1ABYLPk026147 for ; Fri, 10 Feb 2012 04:34:22 -0700 From: Stefan Hajnoczi Date: Fri, 10 Feb 2012 11:34:11 +0000 Message-Id: <1328873653-10554-8-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1328873653-10554-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1328873653-10554-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 7/9] net: remove extra spaces in help messages List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, Stefan Hajnoczi , Benjamin MARSILI From: Benjamin MARSILI Signed-off-by: Benjamin MARSILI Signed-off-by: Stefan Hajnoczi --- net/socket.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net/socket.c b/net/socket.c index d4c2002..0bcf229 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; -- 1.7.8.3