From 8eb64ad6008e674fc2559892c3858f7af9edcd75 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sun, 12 Oct 2008 15:17:15 +0000 Subject: Changed Curl_strlcat to strlcat, which is the one guaranteed to exist --- lib/if2ip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/if2ip.c') 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; } } -- cgit v1.2.3