diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-08 12:48:35 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-08 12:48:35 +0200 |
commit | 49569a8b53b7494b19344f5fc9cd659f68477ba4 (patch) | |
tree | f54272c639b8cc6864efd6f917f7b72bc2f1ad5d /nest/config.Y | |
parent | a460184532f36f75bc9727886faf07c2bde2d7f5 (diff) | |
download | bird-49569a8b53b7494b19344f5fc9cd659f68477ba4.tar bird-49569a8b53b7494b19344f5fc9cd659f68477ba4.zip |
Oops! Configuration compiles now.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nest/config.Y b/nest/config.Y index 01cc1ae..0f52ce4 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -244,7 +244,7 @@ CF_CLI(SHOW INTERFACES,,, [[Show network interfaces]]) CF_CLI(SHOW INTERFACES SUMMARY,,, [[Show summary of network interfaces]]) { if_show_summary(); } ; -CF_CLI(SHOW ROUTE, r_args, [[for] <prefix>|<ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|protocol) <p>] [stats|count], [[Show routing table]]) +CF_CLI(SHOW ROUTE, r_args, [[[<prefix>|for <prefix>|for <ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|protocol) <p>] [stats|count]]], [[Show routing table]]) { rt_show($3); } ; r_args: @@ -353,11 +353,11 @@ echo_size: } ; -CF_CLI(DISABLE, proto_patt, <protocol> | "<pattern>" | all, [[Disable protocol]]) +CF_CLI(DISABLE, proto_patt, <protocol> | \"<pattern>\" | all, [[Disable protocol]]) { proto_xxable($2, 0); } ; -CF_CLI(ENABLE, proto_patt, <protocol> | "<pattern>" | all, [[Enable protocol]]) +CF_CLI(ENABLE, proto_patt, <protocol> | \"<pattern>\" | all, [[Enable protocol]]) { proto_xxable($2, 1); } ; -CF_CLI(RESTART, proto_patt, <protocol> | "<pattern>" | all, [[Restart protocol]]) +CF_CLI(RESTART, proto_patt, <protocol> | \"<pattern>\" | all, [[Restart protocol]]) { proto_xxable($2, 2); } ; CF_CLI_HELP(DEBUG, ..., [[Control protocol debugging]]) |