aboutsummaryrefslogtreecommitdiff
path: root/lib/hostip.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-02 10:06:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-02 10:06:47 +0000
commitfe37fb5921a590a70ddcdb146955eb94b9ecf17b (patch)
tree6ab7a1ad89dd69bc25a4f8c6548b2087434a141d /lib/hostip.c
parent221ecd0a30a7283277ba0dc9036a9afe6f99147a (diff)
Philip Gladstone's 64-bit sparc native compiler compatibility issues fixed.
Diffstat (limited to 'lib/hostip.c')
-rw-r--r--lib/hostip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hostip.c b/lib/hostip.c
index f3a3ccaa5..86faa117a 100644
--- a/lib/hostip.c
+++ b/lib/hostip.c
@@ -265,7 +265,7 @@ Curl_addrinfo *Curl_getaddrinfo(struct SessionHandle *data,
char **bufp)
{
struct hostent *h = NULL;
- unsigned long in;
+ in_addr_t in;
int ret; /* this variable is unused on several platforms but used on some */
#define CURL_NAMELOOKUP_SIZE 9000