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/ripe.h | |
parent | 26617de26577b9f04bf3b20041ceaade2e5015d5 (diff) |
Remove unused parameter in nbr_new
Diffstat (limited to 'usr.sbin/ripd/ripe.h')
-rw-r--r-- | usr.sbin/ripd/ripe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ripd/ripe.h b/usr.sbin/ripd/ripe.h index acc3cd8b6a1..3c901901afe 100644 --- a/usr.sbin/ripd/ripe.h +++ b/usr.sbin/ripd/ripe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ripe.h,v 1.4 2007/01/23 21:10:10 michele Exp $ */ +/* $OpenBSD: ripe.h,v 1.5 2007/03/27 20:19:04 michele Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -127,7 +127,7 @@ void md_list_clr(struct auth_md_head *); /* neighbor.c */ void nbr_init(u_int32_t); -struct nbr *nbr_new(u_int32_t, struct iface *, int); +struct nbr *nbr_new(u_int32_t, struct iface *); void nbr_act_del(struct nbr *); struct nbr *nbr_find_ip(struct iface *, u_int32_t); |