mirror of
https://github.com/curl/curl.git
synced 2026-08-24 15:23:36 +03:00
inet_ntop: rename curlx_inet_ntop to Curl_inet_ntop
It is not part of the curlx club. Closes #17313
This commit is contained in:
parent
b794264408
commit
c37f4b6ac3
7 changed files with 17 additions and 19 deletions
|
|
@ -1020,11 +1020,11 @@ static CURLcode ftp_state_use_port(struct Curl_easy *data,
|
|||
switch(sa->sa_family) {
|
||||
#ifdef USE_IPV6
|
||||
case AF_INET6:
|
||||
r = curlx_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
|
||||
r = Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
r = curlx_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
|
||||
r = Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
|
||||
break;
|
||||
}
|
||||
if(!r) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue