diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hostip6.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/hostip6.c b/lib/hostip6.c index 6bdf179c0..ae36ad738 100644 --- a/lib/hostip6.c +++ b/lib/hostip6.c @@ -143,9 +143,10 @@ int curl_dogetnameinfo(const struct sockaddr *sa, socklen_t salen, char *serv, size_t servlen, int flags, int line, const char *source) { - int res = (getnameinfo)(sa, (size_t)salen, - host, hostlen, serv, servlen, - (unsigned int)flags); + int res = (getnameinfo)(sa, salen, + host, hostlen, + serv, servlen, + flags); if(0 == res) { /* success */ if(logfile) |