diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-06-13 17:47:53 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-06-13 17:47:53 +0000 |
commit | defb103f7d697ca42eaf8d3a44fa9ca1514cb3f0 (patch) | |
tree | 5f7320f5467d91952b168db3df3c9d33ae56c60a /usr.sbin | |
parent | a551f8c66484811f7c76f42ad37d10f942299208 (diff) |
NBR_ACT_HELLO_CHK was missing in the nbr_action_names list.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/neighbor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/neighbor.c b/usr.sbin/ospfd/neighbor.c index 0bfc959b460..a89441ab14b 100644 --- a/usr.sbin/ospfd/neighbor.c +++ b/usr.sbin/ospfd/neighbor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: neighbor.c,v 1.34 2007/01/24 14:08:28 claudio Exp $ */ +/* $OpenBSD: neighbor.c,v 1.35 2007/06/13 17:47:52 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -111,7 +111,8 @@ const char * const nbr_action_names[] = { "ADJ_OK", "RESET_DD", "DELETE", - "CLEAR_LISTS" + "CLEAR_LISTS", + "HELLO_CHK" }; int |