mirror of
https://github.com/curl/curl.git
synced 2026-07-02 18:27:20 +03:00
Changed Curl_strlcat to strlcat, which is the one guaranteed to exist
This commit is contained in:
parent
d74d3fe851
commit
8eb64ad600
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue