From: Dan Fandrich Date: Sun, 12 Oct 2008 15:17:15 +0000 (+0000) Subject: Changed Curl_strlcat to strlcat, which is the one guaranteed to exist X-Git-Tag: curl-7_19_1~172 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8eb64ad6008e674fc2559892c3858f7af9edcd75;p=curl Changed Curl_strlcat to strlcat, which is the one guaranteed to exist --- diff --git a/lib/if2ip.c b/lib/if2ip.c index a54050040..72fd0281f 100644 --- a/lib/if2ip.c +++ b/lib/if2ip.c @@ -85,7 +85,7 @@ char *Curl_if2ip(int af, const char *interface, char *buf, int buf_size) } else addr = &((struct sockaddr_in *)iface->ifa_addr)->sin_addr; ip = (char *) Curl_inet_ntop(af, addr, buf, buf_size); - Curl_strlcat(buf, scope, buf_size); + strlcat(buf, scope, buf_size); break; } }