summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospf6d/neighbor.c
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2007-10-11 20:20:44 +0000
committerclaudio <claudio@openbsd.org>2007-10-11 20:20:44 +0000
commit489ea22060c1544857818de56f163ccf098bb166 (patch)
tree914e65497a63a0527ddac0579a23caa54ce37d5c /usr.sbin/ospf6d/neighbor.c
parentDisable some code that is currently far from working and results in frequent (diff)
downloadwireguard-openbsd-489ea22060c1544857818de56f163ccf098bb166.tar.xz
wireguard-openbsd-489ea22060c1544857818de56f163ccf098bb166.zip
In OSPFv3 auth crypt is no longer (actually all the auth code is gone) so
kill crypt_seq_num as well.
Diffstat (limited to 'usr.sbin/ospf6d/neighbor.c')
-rw-r--r--usr.sbin/ospf6d/neighbor.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/neighbor.c b/usr.sbin/ospf6d/neighbor.c
index a126d631c55..efd7182e879 100644
--- a/usr.sbin/ospf6d/neighbor.c
+++ b/usr.sbin/ospf6d/neighbor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: neighbor.c,v 1.2 2007/10/11 18:43:42 claudio Exp $ */
+/* $OpenBSD: neighbor.c,v 1.3 2007/10/11 20:20:44 claudio Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -595,7 +595,6 @@ nbr_act_delete(struct nbr *nbr)
/* clear dr and bdr */
nbr->dr.s_addr = 0;
nbr->bdr.s_addr = 0;
- nbr->crypt_seq_num = 0;
/* schedule kill timer */
timerclear(&tv);