diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-19 20:38:02 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-19 20:40:18 +0200 |
commit | 86573dcbbe253d618c100bd94c1acf20348b7afa (patch) | |
tree | 39033359a14413975fa90c4f9b1e8274d3e9c0ce /ospfd/ospf_interface.c | |
parent | pimd: Fix indentation issue that is causing clang unhappiness (diff) | |
download | frr-86573dcbbe253d618c100bd94c1acf20348b7afa.tar.xz frr-86573dcbbe253d618c100bd94c1acf20348b7afa.zip |
ospfd: remember format for ospf area id
If the user enters a decimal, display a decimal.
If the user enters a dotted quad, display a dotted quad.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_interface.c')
-rw-r--r-- | ospfd/ospf_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index aeb12a59f..137df16a0 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c @@ -795,7 +795,7 @@ ospf_vl_data_new (struct ospf_area *area, struct in_addr vl_peer) vl_data->vl_peer.s_addr = vl_peer.s_addr; vl_data->vl_area_id = area->area_id; - vl_data->format = area->format; + vl_data->vl_area_id_fmt = area->area_id_fmt; return vl_data; } @@ -869,7 +869,7 @@ ospf_vl_new (struct ospf *ospf, struct ospf_vl_data *vl_data) zlog_debug ("ospf_vl_new(): set if->name to %s", vi->name); area_id.s_addr = 0; - area = ospf_area_get (ospf, area_id, OSPF_AREA_ID_FORMAT_ADDRESS); + area = ospf_area_get (ospf, area_id); voi->area = area; if (IS_DEBUG_OSPF_EVENT) |