diff options
author | Michele Marchetto <michele@cvs.openbsd.org> | 2007-03-27 20:19:05 +0000 |
---|---|---|
committer | Michele Marchetto <michele@cvs.openbsd.org> | 2007-03-27 20:19:05 +0000 |
commit | d6b0538d65f4dbfbc55a3bbf7da5b8656ee99f9d (patch) | |
tree | 8f97edd91a87150f2053fc58de256ca5cd36044e /usr.sbin/ripd/neighbor.c | |
parent | 26617de26577b9f04bf3b20041ceaade2e5015d5 (diff) |
Remove unused parameter in nbr_new
Diffstat (limited to 'usr.sbin/ripd/neighbor.c')
-rw-r--r-- | usr.sbin/ripd/neighbor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ripd/neighbor.c b/usr.sbin/ripd/neighbor.c index 0d8d262ecc8..9ceb8709eaf 100644 --- a/usr.sbin/ripd/neighbor.c +++ b/usr.sbin/ripd/neighbor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: neighbor.c,v 1.6 2007/01/23 21:10:10 michele Exp $ */ +/* $OpenBSD: neighbor.c,v 1.7 2007/03/27 20:19:04 michele Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -169,7 +169,7 @@ nbr_init(u_int32_t hashsize) } struct nbr * -nbr_new(u_int32_t nbr_id, struct iface *iface, int self) +nbr_new(u_int32_t nbr_id, struct iface *iface) { struct nbr_head *head; struct nbr *nbr = NULL; |