diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-10-26 20:20:23 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-10-26 20:20:23 +0000 |
commit | 9c5590fe5b25ed0af87f52e93ba901900d4cd5bc (patch) | |
tree | 23424b0aed969b55f15a91b220006e14aba8dcba /usr.sbin | |
parent | 494d0c27ec8020f0ec7c107a2eee4e81ac5a140c (diff) |
prototype shouldn't carry variable name
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rtsold/if.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/rtsold/if.c b/usr.sbin/rtsold/if.c index 0ff535e0fa7..da3de0e07d6 100644 --- a/usr.sbin/rtsold/if.c +++ b/usr.sbin/rtsold/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.13 2002/06/10 19:57:35 espie Exp $ */ +/* $OpenBSD: if.c,v 1.14 2002/10/26 20:20:22 itojun Exp $ */ /* $KAME: if.c,v 1.18 2002/05/31 10:10:03 itojun Exp $ */ /* @@ -65,12 +65,11 @@ extern int rssock; static int ifsock; -static int get_llflag(const char *name); +static int get_llflag(const char *); #ifndef HAVE_GETIFADDRS static unsigned int if_maxindex(void); #endif -static void get_rtaddrs(int addrs, struct sockaddr *sa, - struct sockaddr **rti_info); +static void get_rtaddrs(int, struct sockaddr *, struct sockaddr **); int ifinit() |