diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-06 09:13:37 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-06 09:13:37 +0000 |
commit | 66261211a9c9abd5e1591f0875d16da1e3975fcb (patch) | |
tree | a77912038115c288364a87a85ab3e3b7d2d436af /proto/ospf/config.Y | |
parent | b9ed99f738c10c0576a9ab8a70b028a92d0d74a7 (diff) |
Struct area_net changed.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r-- | proto/ospf/config.Y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index e4ed500b..177c926f 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -112,8 +112,8 @@ pref_el: prefix ';' { this_pref = cfg_allocz(sizeof(struct area_net)); add_tail(&this_area->net_list, NODE this_pref); - this_pref->net = $1.addr; - this_pref->mlen = $1.len; + this_pref->px.addr = $1.addr; + this_pref->px.len = $1.len; } ; @@ -121,8 +121,8 @@ pref_hid: prefix HIDDEN ';' { this_pref = cfg_allocz(sizeof(struct area_net)); add_tail(&this_area->net_list, NODE this_pref); - this_pref->net = $1.addr; - this_pref->mlen = $1.len; + this_pref->px.addr = $1.addr; + this_pref->px.len = $1.len; this_pref->hidden = 1; } ; |