1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

Changed Curl_strlcat to strlcat, which is the one guaranteed to exist

This commit is contained in:
Dan Fandrich 2008-10-12 15:17:15 +00:00
parent d74d3fe851
commit 8eb64ad600

View File

@ -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;
}
}