diff options
-rw-r--r-- | sbin/isakmpd/doi.c | 4 | ||||
-rw-r--r-- | sbin/isakmpd/exchange.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sbin/isakmpd/doi.c b/sbin/isakmpd/doi.c index 322173c3345..e9a50302db6 100644 --- a/sbin/isakmpd/doi.c +++ b/sbin/isakmpd/doi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: doi.c,v 1.8 2004/05/14 08:42:56 hshoexer Exp $ */ +/* $OpenBSD: doi.c,v 1.9 2004/07/09 16:06:48 deraadt Exp $ */ /* $EOM: doi.c,v 1.4 1999/04/02 00:57:36 niklas Exp $ */ /* @@ -39,7 +39,7 @@ static LIST_HEAD(doi_list, doi) doi_tab; void -doi_init() +doi_init(void) { LIST_INIT(&doi_tab); } diff --git a/sbin/isakmpd/exchange.c b/sbin/isakmpd/exchange.c index b5d232f9c95..55ec031836c 100644 --- a/sbin/isakmpd/exchange.c +++ b/sbin/isakmpd/exchange.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exchange.c,v 1.99 2004/06/21 13:09:00 ho Exp $ */ +/* $OpenBSD: exchange.c,v 1.100 2004/07/09 16:06:48 deraadt Exp $ */ /* $EOM: exchange.c,v 1.143 2000/12/04 00:02:25 angelos Exp $ */ /* @@ -420,7 +420,7 @@ exchange_run(struct message *msg) } void -exchange_init() +exchange_init(void) { int i; |