aboutsummaryrefslogtreecommitdiff
path: root/lib/if2ip.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2006-08-16 18:48:27 +0000
committerDan Fandrich <dan@coneharvesters.com>2006-08-16 18:48:27 +0000
commit839441e236764996425fe768e9497b1f914cea3e (patch)
treef75970d7e57d44104b523545d496b0b80180d140 /lib/if2ip.c
parentba9ea943e2e11a6131832937551f1768c8f52d9b (diff)
Minor portability fixes to get things running on UNICOS 9.0 on a Cray Y-MP
Diffstat (limited to 'lib/if2ip.c')
-rw-r--r--lib/if2ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/if2ip.c b/lib/if2ip.c
index f3d31bc1d..fadf51474 100644
--- a/lib/if2ip.c
+++ b/lib/if2ip.c
@@ -114,7 +114,7 @@ char *Curl_if2ip(const char *interface, char *buf, int buf_size)
struct in_addr in;
struct sockaddr_in *s = (struct sockaddr_in *)&req.ifr_dstaddr;
- memcpy(&in, &(s->sin_addr.s_addr), sizeof(in));
+ memcpy(&in, &s->sin_addr, sizeof(in));
ip = (char *) Curl_inet_ntop(s->sin_family, &in, buf, buf_size);
}
sclose(dummy);