From: Stefano Garzarella Date: Fri, 17 May 2019 13:47:48 +0000 (+0200) Subject: net: remove unused get_str_sep() function X-Git-Tag: qemu-xen-4.13.0-rc1~99^2~10 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4623027d866d56677b70449837accf07df693f4d;p=qemu-xen.git net: remove unused get_str_sep() function Since the get_str_sep() function is no longer used in net/net.c, we can remove it. Signed-off-by: Stefano Garzarella Reviewed-by: Markus Armbruster Signed-off-by: Jason Wang --- diff --git a/net/net.c b/net/net.c index 5ce3996b8d..7d4098254f 100644 --- a/net/net.c +++ b/net/net.c @@ -64,26 +64,6 @@ static QTAILQ_HEAD(, NetClientState) net_clients; /***********************************************************/ /* network device redirectors */ -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); - if (!p1) - return -1; - len = p1 - p; - p1++; - if (buf_size > 0) { - if (len > buf_size - 1) - len = buf_size - 1; - memcpy(buf, p, len); - buf[len] = '\0'; - } - *pp = p1; - return 0; -} - int parse_host_port(struct sockaddr_in *saddr, const char *str, Error **errp) {