diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-06-24 10:43:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-06-24 10:43:50 +0000 |
commit | 5e34f3dc0133333fb398dd4b285a63f58aa441da (patch) | |
tree | 24ad1f8d707fa14cc663f8e1ec534ef7703b2d2d /lib/hostip.h | |
parent | 0031d76f2a77e583528a817bcf7b605052b95893 (diff) | |
download | curl-5e34f3dc0133333fb398dd4b285a63f58aa441da.tar.gz |
made the Curl_he2ai() take the port number as an int intead, to avoid lots
of typecasts all over
Diffstat (limited to 'lib/hostip.h')
-rw-r--r-- | lib/hostip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hostip.h b/lib/hostip.h index aa3aba05f..9eb1bf055 100644 --- a/lib/hostip.h +++ b/lib/hostip.h @@ -215,7 +215,7 @@ Curl_addrinfo *Curl_ip2addr(in_addr_t num, char *hostname, int port); /* [ipv4 only] Curl_he2ai() converts a struct hostent to a Curl_addrinfo chain and returns it */ -Curl_addrinfo *Curl_he2ai(struct hostent *, unsigned short port); +Curl_addrinfo *Curl_he2ai(struct hostent *, int port); /* relocate a hostent struct */ void Curl_hostent_relocate(struct hostent *h, long offset); |