summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2007-02-01 13:09:42 +0000
committerclaudio <claudio@openbsd.org>2007-02-01 13:09:42 +0000
commit247faaa370b21d19a61059c48debfaec0aa311f6 (patch)
tree0b38924fb3cdc20201a4e36a90fcdc72de92437c
parentIf an interface is going down send out an empty OSPF hello packet so that (diff)
downloadwireguard-openbsd-247faaa370b21d19a61059c48debfaec0aa311f6.tar.xz
wireguard-openbsd-247faaa370b21d19a61059c48debfaec0aa311f6.zip
Enable reload support in ospfctl. This is still a bit experimental so try
it out in your test lab before using it on the core infrastructure.
-rw-r--r--usr.sbin/ospfctl/parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfctl/parser.c b/usr.sbin/ospfctl/parser.c
index a260110fe73..7c754ffc563 100644
--- a/usr.sbin/ospfctl/parser.c
+++ b/usr.sbin/ospfctl/parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.c,v 1.13 2007/01/25 16:40:43 claudio Exp $ */
+/* $OpenBSD: parser.c,v 1.14 2007/02/01 13:09:42 claudio Exp $ */
/*
* Copyright (c) 2004 Esben Norby <norby@openbsd.org>
@@ -60,7 +60,7 @@ static const struct token t_show_rib[];
static const struct token t_show_fib[];
static const struct token t_main[] = {
-/* {KEYWORD, "reload", RELOAD, NULL}, */
+ {KEYWORD, "reload", RELOAD, NULL},
{KEYWORD, "fib", FIB, t_fib},
{KEYWORD, "show", SHOW, t_show},
{ENDTOKEN, "", NONE, NULL}