diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2008-10-12 15:17:15 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2008-10-12 15:17:15 +0000 |
commit | 8eb64ad6008e674fc2559892c3858f7af9edcd75 (patch) | |
tree | d625353ccfcebda9e5ec7c66bd95a48e144d44a7 | |
parent | d74d3fe8515b13a899ae28394bd52810ed6b46a4 (diff) |
Changed Curl_strlcat to strlcat, which is the one guaranteed to exist
-rw-r--r-- | lib/if2ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |