diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-12-01 11:35:11 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-12-01 11:35:11 -0800 |
commit | 17924d6b36d664a45595eee9b3b163cdd1c2033b (patch) | |
tree | 72d21c63cdc2f8c5ad4ce82a2c3e8e73b5edffe5 | |
parent | cfbb47cacca2764e1562c2db856e848de8fb0e63 (diff) | |
download | quagga-17924d6b36d664a45595eee9b3b163cdd1c2033b.tar.bz2 quagga-17924d6b36d664a45595eee9b3b163cdd1c2033b.tar.xz |
Make command nodes static (again)
Change lost in merge.
-rw-r--r-- | lib/command.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/command.c b/lib/command.c index 4887f94f..0bbd99e5 100644 --- a/lib/command.c +++ b/lib/command.c @@ -41,37 +41,37 @@ vector cmdvec = NULL; struct host host; /* Standard command node structures. */ -struct cmd_node auth_node = +static struct cmd_node auth_node = { AUTH_NODE, "Password: ", }; -struct cmd_node view_node = +static struct cmd_node view_node = { VIEW_NODE, "%s> ", }; -struct cmd_node restricted_node = +static struct cmd_node restricted_node = { RESTRICTED_NODE, "%s$ ", }; -struct cmd_node auth_enable_node = +static struct cmd_node auth_enable_node = { AUTH_ENABLE_NODE, "Password: ", }; -struct cmd_node enable_node = +static struct cmd_node enable_node = { ENABLE_NODE, "%s# ", }; -struct cmd_node config_node = +static struct cmd_node config_node = { CONFIG_NODE, "%s(config)# ", |