summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_vty.c
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-06-04 10:31:37 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-06-04 10:31:37 -0700
commitdb08408462ac8afa1b95aec4eb8d3efeb283025d (patch)
treeece8ff3df7fce16c95c4057f32346beae979dbd0 /ospfd/ospf_vty.c
parentcd2ec99e4e365bd61deebd61639cd3e1e777cdbe (diff)
parent6e0989e113d9e2268e58cfe29922e971793c1d06 (diff)
downloadquagga-db08408462ac8afa1b95aec4eb8d3efeb283025d.tar.bz2
quagga-db08408462ac8afa1b95aec4eb8d3efeb283025d.tar.xz
Merge branch 'upstream' into jenner
Conflicts: bgpd/bgp_aspath.c bgpd/bgpd.c lib/smux.c lib/workqueue.c ospfd/ospf_snmp.c
Diffstat (limited to 'ospfd/ospf_vty.c')
-rw-r--r--ospfd/ospf_vty.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index e77d3807..fce22e5c 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -2115,8 +2115,10 @@ DEFUN (no_ospf_abr_type,
abr_type = OSPF_ABR_CISCO;
else if (strncmp (argv[0], "i", 1) == 0)
abr_type = OSPF_ABR_IBM;
- else if (strncmp (argv[0], "s", 1) == 0)
+ else if (strncmp (argv[0], "sh", 2) == 0)
abr_type = OSPF_ABR_SHORTCUT;
+ else if (strncmp (argv[0], "st", 2) == 0)
+ abr_type = OSPF_ABR_STAND;
else
return CMD_WARNING;