diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-02-08 13:32:51 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-02-08 13:32:51 +0000 |
commit | 32a94c3224e8fbe08979db08ff1ead012630fce7 (patch) | |
tree | e208ef4bb91b8448738af6483e13a0b1ac59ab90 /sys/netinet/if_ether.c | |
parent | ccf9bdaa1c64cde9f53bc701caa722051438611f (diff) |
arpioctl() is not used sore remove it. Found by Gleydson Soares.
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r-- | sys/netinet/if_ether.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 91ea7bbc79e..62fc922538b 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.83 2010/01/13 05:27:19 claudio Exp $ */ +/* $OpenBSD: if_ether.c,v 1.84 2010/02/08 13:32:50 claudio Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -856,15 +856,6 @@ arplookup(addr, create, proxy, tableid) return ((struct llinfo_arp *)rt->rt_llinfo); } -int -arpioctl(cmd, data) - u_long cmd; - caddr_t data; -{ - - return (EOPNOTSUPP); -} - void arp_ifinit(ac, ifa) struct arpcom *ac; |