Deleted Added
full compact
27c27
< __FBSDID("$FreeBSD: head/lib/libc/net/getnetnamadr.c 145626 2005-04-28 15:32:55Z ume $");
---
> __FBSDID("$FreeBSD: head/lib/libc/net/getnetnamadr.c 146244 2005-05-15 20:15:15Z ume $");
123c123,124
< getnetbyaddr_r(u_long addr, int af, struct netent *ne, struct netent_data *ned)
---
> getnetbyaddr_r(uint32_t addr, int af, struct netent *ne,
> struct netent_data *ned)
167c168,172
< getnetbyaddr(u_long addr, int af)
---
> #if __LONG_BIT == 64
> getnetbyaddr(u_long addr, int af) /* ABI compatibility */
> #else
> getnetbyaddr(uint32_t addr, int af)
> #endif
173c178
< if (getnetbyaddr_r(addr, af, &nd->net, &nd->data) != 0)
---
> if (getnetbyaddr_r((uint32_t)addr, af, &nd->net, &nd->data) != 0)