summaryrefslogtreecommitdiffstats
path: root/proto/ospf/config.Y
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2004-06-06 16:27:11 +0200
committerOndrej Filip <feela@network.cz>2004-06-06 16:27:11 +0200
commitd631698ec8a63270f7ca9bc069508d1313a08f92 (patch)
tree922a23cdbe59401b78f809878ba814e2adac4697 /proto/ospf/config.Y
parentd8d553cadfecab2a2f3d8a69624b5a743bd97ce3 (diff)
downloadbird-d631698ec8a63270f7ca9bc069508d1313a08f92.tar
bird-d631698ec8a63270f7ca9bc069508d1313a08f92.zip
Indentation.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r--proto/ospf/config.Y4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y
index 177c926..5b4f1ac 100644
--- a/proto/ospf/config.Y
+++ b/proto/ospf/config.Y
@@ -37,7 +37,7 @@ ospf_proto_start: proto_start OSPF {
this_proto = proto_config_new(&proto_ospf, sizeof(struct ospf_config));
this_proto->preference = DEF_PREF_OSPF;
init_list(&OSPF_CFG->area_list);
- OSPF_CFG->rfc1583=1;
+ OSPF_CFG->rfc1583 = DEFAULT_RFC1583;
}
;
@@ -56,7 +56,7 @@ ospf_area_start: AREA idval '{' {
this_area = cfg_allocz(sizeof(struct ospf_area_config));
add_tail(&OSPF_CFG->area_list, NODE this_area);
this_area->areaid = $2;
- this_area->tick = DISPTICK;
+ this_area->tick = DEFAULT_DISPTICK;
this_area->stub = 0;
init_list(&this_area->patt_list);
init_list(&this_area->net_list);