diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-06-02 15:23:31 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-06-02 15:23:31 +0000 |
commit | a6de8402361a6abb407e28858e0a435d09c13a01 (patch) | |
tree | 35bb63ea975873f2598af1378a449efc38850bcb /usr.sbin/ndp | |
parent | 7bf6db6342110c9d7a2d2087fe5868022f6332b4 (diff) |
KNF (no variable name should be present on prototype)
Diffstat (limited to 'usr.sbin/ndp')
-rw-r--r-- | usr.sbin/ndp/ndp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ndp/ndp.c b/usr.sbin/ndp/ndp.c index 9c651469569..d63ebb40abe 100644 --- a/usr.sbin/ndp/ndp.c +++ b/usr.sbin/ndp/ndp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ndp.c,v 1.19 2002/06/02 01:31:14 deraadt Exp $ */ +/* $OpenBSD: ndp.c,v 1.20 2002/06/02 15:23:30 itojun Exp $ */ /* $KAME: ndp.c,v 1.86 2002/05/26 01:16:10 itojun Exp $ */ /* @@ -136,7 +136,7 @@ int set(int, char **); void get(char *); int delete(char *); void dump(struct in6_addr *); -static struct in6_nbrinfo *getnbrinfo(struct in6_addr *addr, int ifindex, int); +static struct in6_nbrinfo *getnbrinfo(struct in6_addr *, int, int); static char *ether_str(struct sockaddr_dl *); int ndp_ether_aton(char *, u_char *); void usage(void); @@ -152,8 +152,8 @@ void harmonize_rtr(void); static void getdefif(void); static void setdefif(char *); #endif -static char *sec2str(time_t t); -static char *ether_str(struct sockaddr_dl *sdl); +static char *sec2str(time_t); +static char *ether_str(struct sockaddr_dl *); static void ts_print(const struct timeval *); #ifdef ICMPV6CTL_ND6_DRLIST |