qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] trivial fix of inet_listen() parameter


From: Amos Kong
Subject: [Qemu-devel] [PATCH] trivial fix of inet_listen() parameter
Date: Sat, 29 Sep 2012 17:32:31 +0800

.. int inet_listen(const char *str, char *ostr, int olen,
..                 int socktype, int port_offset, Error **errp)

Here 'ostr' is NULL, so change 'olen' to zero.

Signed-off-by: Amos Kong <address@hidden>
---
 migration-tcp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/migration-tcp.c b/migration-tcp.c
index a15c2b8..34d6d89 100644
--- a/migration-tcp.c
+++ b/migration-tcp.c
@@ -123,7 +123,7 @@ int tcp_start_incoming_migration(const char *host_port, 
Error **errp)
 {
     int s;
 
-    s = inet_listen(host_port, NULL, 256, SOCK_STREAM, 0, errp);
+    s = inet_listen(host_port, NULL, 0, SOCK_STREAM, 0, errp);
 
     if (s < 0) {
         return -1;
-- 
1.7.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]