diff options
author | paul <paul> | 2005-07-12 22:04:22 +0200 |
---|---|---|
committer | paul <paul> | 2005-07-12 22:04:22 +0200 |
commit | d57834f6e5f060924b92b9544070ecf5f145848a (patch) | |
tree | 25f7312efa2f711b2ebf1b17521e0aea9d83c10f /ospfd/ospfd.c | |
parent | - Fix ChangeLog entry to properly refer to problem being Linux/ARM, not (diff) | |
download | frr-d57834f6e5f060924b92b9544070ecf5f145848a.tar.xz frr-d57834f6e5f060924b92b9544070ecf5f145848a.zip |
2005-07-12 Paul Jakma <paul.jakma@sun.com>
* ospfd.h: add OSPF_ABR_DEFAULT for convenience, make
OSPF_ABR_CISCO be the default ABR type.
* ospfd.c: (ospf_new) initialise abr_type to OSPF_ABR_DEFAULT
* ospf_vty.c: (no_ospf_abr_type_cmd) add standard as a negatable
abr_type. default abr_type should be OSPF_ABR_DEFAULT.
(ospf_config_write) test whether default abr_type against
OSPF_ABR_DEFAULT, rather than any specific ABR_TYPE.
Diffstat (limited to 'ospfd/ospfd.c')
-rw-r--r-- | ospfd/ospfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospfd.c b/ospfd/ospfd.c index 30164d02e..189805b39 100644 --- a/ospfd/ospfd.c +++ b/ospfd/ospfd.c @@ -157,7 +157,7 @@ ospf_new (void) new->router_id.s_addr = htonl (0); new->router_id_static.s_addr = htonl (0); - new->abr_type = OSPF_ABR_STAND; + new->abr_type = OSPF_ABR_DEFAULT; new->oiflist = list_new (); new->vlinks = list_new (); new->areas = list_new (); |