| Submitter | Benjamin |
|---|---|
| Date | Jan. 22, 2012, 6:42 p.m. |
| Message ID | <1327257758-12765-1-git-send-email-mlspirat42@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/137219/ |
| State | New |
| Headers | show |
Comments
On Mon, Jan 23, 2012 at 03:42:38AM +0900, Benjamin MARSILI wrote: > > Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com> > --- > net/socket.c | 8 ++++---- > 1 files changed, 4 insertions(+), 4 deletions(-) Thanks, applied to the trivial patches tree: https://github.com/stefanha/qemu/commits/trivial-patches Stefan
Patch
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;
Signed-off-by: Benjamin MARSILI <mlspirat42@gmail.com> --- net/socket.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)