diff options
author | Michele Marchetto <michele@cvs.openbsd.org> | 2010-02-21 20:53:21 +0000 |
---|---|---|
committer | Michele Marchetto <michele@cvs.openbsd.org> | 2010-02-21 20:53:21 +0000 |
commit | 5df3ee4e0044586b6ae11f069983a7484f53d017 (patch) | |
tree | 97e57587dff1194ce5f338bcae4be74358e6fbd6 /usr.sbin/ripd | |
parent | b5b2be0881d0eabcfaf33e4c3c686d4b893cf385 (diff) |
Kill double declaration of control_imsg_relay().
From Christiano F. Haesbaert.
ok claudio@
Diffstat (limited to 'usr.sbin/ripd')
-rw-r--r-- | usr.sbin/ripd/control.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/ripd/control.c b/usr.sbin/ripd/control.c index 31fd9f3fb60..62679f78945 100644 --- a/usr.sbin/ripd/control.c +++ b/usr.sbin/ripd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.13 2009/12/08 15:54:50 jsg Exp $ */ +/* $OpenBSD: control.c,v 1.14 2010/02/21 20:53:20 michele Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -34,8 +34,6 @@ #define CONTROL_BACKLOG 5 -int control_imsg_relay(struct imsg *imsg); - struct ctl_conn *control_connbyfd(int); struct ctl_conn *control_connbypid(pid_t); void control_close(int); |