diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-12-01 20:10:34 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-06-12 18:10:29 +0200 |
commit | 7fc626de5f618133ad2a478d13defa3a110b89ea (patch) | |
tree | 432ff0e4672eabc2ec6b0dcffc22dcc0aee532c8 /isisd/isisd.c | |
parent | [cleanup] functions taking no args should be declared with void args (diff) | |
download | frr-7fc626de5f618133ad2a478d13defa3a110b89ea.tar.xz frr-7fc626de5f618133ad2a478d13defa3a110b89ea.zip |
[cleanup] Make command nodes static
The cmd_nodes used to configure vty, can mostly be static so
(basic data hiding 101).
Diffstat (limited to 'isisd/isisd.c')
-rw-r--r-- | isisd/isisd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isisd.c b/isisd/isisd.c index 7c669fcbf..1e84a1ced 100644 --- a/isisd/isisd.c +++ b/isisd/isisd.c @@ -2076,7 +2076,7 @@ isis_config_write (struct vty *vty) return write; } -struct cmd_node isis_node = { +static struct cmd_node isis_node = { ISIS_NODE, "%s(config-router)# ", 1 |