diff options
author | Martin Mares <mj@ucw.cz> | 2000-02-18 00:37:16 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-02-18 00:37:16 +0100 |
commit | fae0396ea4fd9d2530086eef77b8a11b6640d640 (patch) | |
tree | e20a4d7513feabab3f926c85f7098eaf95349809 /nest | |
parent | 0223d4fff11badc03470b4320fa9dfe28afd1bed (diff) | |
download | bird-fae0396ea4fd9d2530086eef77b8a11b6640d640.tar bird-fae0396ea4fd9d2530086eef77b8a11b6640d640.zip |
Completion works. Unfortunately, we have to access a couple of internal
symbols of libreadline :-(
Diffstat (limited to 'nest')
-rw-r--r-- | nest/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/config.Y b/nest/config.Y index d5fdc4e..bc2a3fe 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -192,7 +192,7 @@ password_list: /* Core commands */ -CF_CLI_HELP(SHOW,,[[Show status information]]) +CF_CLI_HELP(SHOW, ..., [[Show status information]]) CF_CLI(SHOW STATUS,,, [[Show router status]]) { cmd_show_status(); } @@ -255,7 +255,7 @@ r_args: CF_CLI(SHOW SYMBOLS, optsym, [<symbol>], [[Show all known symbolic names]]) { cmd_show_symbols($3); } ; -CF_CLI_HELP(DEBUG, <subsystem>, [[Show debugging information]]) +CF_CLI_HELP(DEBUG, ..., [[Show debugging information]]) CF_CLI(DEBUG RESOURCES,,, [[Show all allocated resource]]) { rdump(&root_pool); cli_msg(0, ""); } ; CF_CLI(DEBUG SOCKETS,,, [[Show open sockets]]) |