diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-20 09:46:00 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-20 09:46:00 +0000 |
commit | 3b592c4c617894a0a9c77dccf7a0ad70148fab8b (patch) | |
tree | 995dd80c726fb7d18c8852ad7d598075e26ee653 | |
parent | 23a69ce8fb301cb10e396b2fb8b13a380a367b25 (diff) |
"bgpctl ?" is invalid syntax; replace with "bgpctl help".
from Aivar Jaakson.
-rw-r--r-- | usr.bin/bgplg/bgplg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/bgplg/bgplg.h b/usr.bin/bgplg/bgplg.h index 4d73efd19c6..753ddb3ba50 100644 --- a/usr.bin/bgplg/bgplg.h +++ b/usr.bin/bgplg/bgplg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgplg.h,v 1.4 2007/04/13 15:31:02 claudio Exp $ */ +/* $OpenBSD: bgplg.h,v 1.5 2009/05/20 09:45:59 sthen Exp $ */ /* * Copyright (c) 2005, 2006 Reyk Floeter <reyk@vantronix.net> @@ -64,7 +64,7 @@ struct cmd { { TRACEROUTE, "-Sl", NULL } }, \ { "ping", 1, 1, "<address>", \ { PING, "-c4", "-w2", NULL } }, \ - { "?", 0, 0, NULL, { NULL }, lg_help }, \ + { "help", 0, 0, NULL, { NULL }, lg_help }, \ { NULL } \ } |