From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4UmP-0000Sb-Vt for qemu-devel@nongnu.org; Mon, 05 Mar 2012 05:04:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S4UmJ-0007r6-U2 for qemu-devel@nongnu.org; Mon, 05 Mar 2012 05:04:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54130) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4UmJ-0007qp-M5 for qemu-devel@nongnu.org; Mon, 05 Mar 2012 05:04:27 -0500 From: Amos Kong Date: Mon, 05 Mar 2012 18:04:23 +0800 Message-ID: <20120305100423.3595.95055.stgit@dhcp-8-167.nay.redhat.com> In-Reply-To: <20120305095934.3595.88531.stgit@dhcp-8-167.nay.redhat.com> References: <20120305095934.3595.88531.stgit@dhcp-8-167.nay.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH v2 8/9] net: split hostname and service by last colon List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, kvm@vger.kernel.org, quintela@redhat.com, jasowang@redhat.com, qemu-devel@nongnu.org, laine@redhat.com IPv6 address contains colons, parse will be wrong. [2312::8274]:5200 Signed-off-by: Amos Kong --- net.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net.c b/net.c index 2518e5f..d6ce1fa 100644 --- a/net.c +++ b/net.c @@ -84,7 +84,7 @@ static int get_str_sep(char *buf, int buf_size, const char **pp, int sep) const char *p, *p1; int len; p = *pp; - p1 = strchr(p, sep); + p1 = strrchr(p, sep); if (!p1) return -1; len = p1 - p;