summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/ripd/interface.c3
-rw-r--r--usr.sbin/ripd/neighbor.c3
-rw-r--r--usr.sbin/ripd/parse.y3
3 files changed, 3 insertions, 6 deletions
diff --git a/usr.sbin/ripd/interface.c b/usr.sbin/ripd/interface.c
index 4605f911d95..dd2a242e6e1 100644
--- a/usr.sbin/ripd/interface.c
+++ b/usr.sbin/ripd/interface.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: interface.c,v 1.4 2007/10/18 17:00:59 deraadt Exp $ */
+/* $OpenBSD: interface.c,v 1.5 2007/10/24 19:50:33 claudio Exp $ */
/*
* Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -44,7 +44,6 @@ extern struct ripd_conf *conf;
int if_act_start(struct iface *);
int if_act_reset(struct iface *);
-void if_keepalive_timer(int, short, void *);
struct {
int state;
diff --git a/usr.sbin/ripd/neighbor.c b/usr.sbin/ripd/neighbor.c
index 0be04473890..cedb527b727 100644
--- a/usr.sbin/ripd/neighbor.c
+++ b/usr.sbin/ripd/neighbor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: neighbor.c,v 1.8 2007/10/18 17:00:59 deraadt Exp $ */
+/* $OpenBSD: neighbor.c,v 1.9 2007/10/24 19:50:33 claudio Exp $ */
/*
* Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -44,7 +44,6 @@ void nbr_stop_timer(struct nbr *);
void nbr_failed_new(struct nbr *);
void nbr_failed_timeout(int, short, void *);
-void nbr_failed_stop_timer(struct nbr_failed *);
LIST_HEAD(nbr_head, nbr);
diff --git a/usr.sbin/ripd/parse.y b/usr.sbin/ripd/parse.y
index 7b61673dd67..aac7f8b448e 100644
--- a/usr.sbin/ripd/parse.y
+++ b/usr.sbin/ripd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.15 2007/10/20 13:26:50 pyr Exp $ */
+/* $OpenBSD: parse.y,v 1.16 2007/10/24 19:50:33 claudio Exp $ */
/*
* Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -84,7 +84,6 @@ static struct {
struct iface *iface = NULL;
static struct ripd_conf *conf;
static int errors = 0;
-char *start_state;
struct iface *conf_get_if(struct kif *);
void clear_config(struct ripd_conf *);