diff options
author | 2015-09-10 07:43:18 +0000 | |
---|---|---|
committer | 2015-09-10 07:43:18 +0000 | |
commit | e9089e58c6f1ba17b3089840db05fd11522fe13d (patch) | |
tree | 3490e9eb6a21c9b26a2be90b8d392a0ae3878175 | |
parent | Fix shadowed verify_error in s_server by removing the unused global. (diff) | |
download | wireguard-openbsd-e9089e58c6f1ba17b3089840db05fd11522fe13d.tar.xz wireguard-openbsd-e9089e58c6f1ba17b3089840db05fd11522fe13d.zip |
Missing prototype change in previous.
-rw-r--r-- | sys/netinet/if_ether.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/if_ether.h b/sys/netinet/if_ether.h index 5c544f93b75..f32d977e9ff 100644 --- a/sys/netinet/if_ether.h +++ b/sys/netinet/if_ether.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.h,v 1.57 2015/06/23 13:20:17 mpi Exp $ */ +/* $OpenBSD: if_ether.h,v 1.58 2015/09/10 07:43:18 mpi Exp $ */ /* $NetBSD: if_ether.h,v 1.22 1996/05/11 13:00:00 mycroft Exp $ */ /* @@ -272,7 +272,7 @@ extern struct ifnet *revarp_ifp; #endif /* NFSCLIENT */ void arprequest(struct ifnet *, u_int32_t *, u_int32_t *, u_int8_t *); -int arpproxy(struct in_addr, u_int); +int arpproxy(struct in_addr, unsigned int); void revarpinput(struct mbuf *); void in_revarpinput(struct mbuf *); void revarprequest(struct ifnet *); |