diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-02-01 13:09:43 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-02-01 13:09:43 +0000 |
commit | 8536f4d36e60ed7d85689af78a92ffc31efb7202 (patch) | |
tree | c733997629d0a0243d69ff86d81cd170e5697103 /usr.sbin | |
parent | aa3fabbcc19637714eb1ebf23c382458bd37866b (diff) |
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.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfctl/parser.c | 4 |
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} |