diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-12-01 11:10:34 -0800 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-06-12 17:10:29 +0100 |
commit | 7fc626de5f618133ad2a478d13defa3a110b89ea (patch) | |
tree | 432ff0e4672eabc2ec6b0dcffc22dcc0aee532c8 /ospf6d/ospf6_top.c | |
parent | 66e5cd87194ae6fdd51061a91b4698bc0a652f6b (diff) | |
download | quagga-7fc626de5f618133ad2a478d13defa3a110b89ea.tar.bz2 quagga-7fc626de5f618133ad2a478d13defa3a110b89ea.tar.xz |
[cleanup] Make command nodes static
The cmd_nodes used to configure vty, can mostly be static so
(basic data hiding 101).
Diffstat (limited to 'ospf6d/ospf6_top.c')
-rw-r--r-- | ospf6d/ospf6_top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_top.c b/ospf6d/ospf6_top.c index d45d1321..609df41c 100644 --- a/ospf6d/ospf6_top.c +++ b/ospf6d/ospf6_top.c @@ -650,7 +650,7 @@ config_write_ospf6 (struct vty *vty) } /* OSPF6 node structure. */ -struct cmd_node ospf6_node = +static struct cmd_node ospf6_node = { OSPF6_NODE, "%s(config-ospf6)# ", |