1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Fix compiler warning.

This commit is contained in:
Yang Tse 2006-07-03 18:38:03 +00:00
parent bec1977137
commit 43369b8096
2 changed files with 10 additions and 6 deletions

View File

@ -196,9 +196,11 @@ int curl_dogetaddrinfo(char *hostname, char *service,
struct addrinfo *hints, struct addrinfo *hints,
struct addrinfo **result, struct addrinfo **result,
int line, const char *source); int line, const char *source);
int curl_dogetnameinfo(const struct sockaddr *sa, socklen_t salen, int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa,
char *host, size_t hostlen, GETNAMEINFO_TYPE_ARG2 salen,
char *serv, size_t servlen, int flags, char *host, GETNAMEINFO_TYPE_ARG46 hostlen,
char *serv, GETNAMEINFO_TYPE_ARG46 servlen,
GETNAMEINFO_TYPE_ARG7 flags,
int line, const char *source); int line, const char *source);
#endif #endif

View File

@ -136,9 +136,11 @@ int curl_dogetaddrinfo(char *hostname, char *service,
return res; return res;
} }
int curl_dogetnameinfo(const struct sockaddr *sa, socklen_t salen, int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa,
char *host, size_t hostlen, GETNAMEINFO_TYPE_ARG2 salen,
char *serv, size_t servlen, int flags, char *host, GETNAMEINFO_TYPE_ARG46 hostlen,
char *serv, GETNAMEINFO_TYPE_ARG46 servlen,
GETNAMEINFO_TYPE_ARG7 flags,
int line, const char *source) int line, const char *source)
{ {
int res = (getnameinfo)(sa, salen, int res = (getnameinfo)(sa, salen,