From ad95373efcd7eaa4d641a7a821e5b05fb2d31e1d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 30 Jan 2004 23:45:53 +0000 Subject: Use standard C99 types --- networking/udhcp/arpping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'networking/udhcp/arpping.c') diff --git a/networking/udhcp/arpping.c b/networking/udhcp/arpping.c index 363408d6e..f2e3768c5 100644 --- a/networking/udhcp/arpping.c +++ b/networking/udhcp/arpping.c @@ -29,7 +29,7 @@ */ /* FIXME: match response against chaddr */ -int arpping(u_int32_t yiaddr, u_int32_t ip, unsigned char *mac, char *interface) +int arpping(uint32_t yiaddr, uint32_t ip, uint8_t *mac, char *interface) { int timeout = 2; @@ -91,7 +91,7 @@ int arpping(u_int32_t yiaddr, u_int32_t ip, unsigned char *mac, char *interface) if (recv(s, &arp, sizeof(arp), 0) < 0 ) rv = 0; if (arp.operation == htons(ARPOP_REPLY) && bcmp(arp.tHaddr, mac, 6) == 0 && - *((u_int *) arp.sInaddr) == yiaddr) { + *((uint32_t *) arp.sInaddr) == yiaddr) { DEBUG(LOG_INFO, "Valid arp reply receved for this address"); rv = 0; break; -- cgit v1.2.3