summaryrefslogtreecommitdiff
path: root/proto/ospf/iface.c
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2022-01-24 10:01:10 +0100
committerMaria Matejka <mq@ucw.cz>2022-02-03 10:30:33 +0100
commitc651cef737c7c7578c26bd787c0abd3c364bf4b8 (patch)
treeea075e90ddd3efdd4451021a4921172ec979ce5d /proto/ospf/iface.c
parentb6c9263543060141d79e205e1b3408099ad1afc4 (diff)
Global interface list renamed to not clash with local lists
Diffstat (limited to 'proto/ospf/iface.c')
-rw-r--r--proto/ospf/iface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c
index 2aae341a..b8c40c9b 100644
--- a/proto/ospf/iface.c
+++ b/proto/ospf/iface.c
@@ -1225,7 +1225,7 @@ ospf_reconfigure_ifaces2(struct ospf_proto *p)
struct iface *iface;
struct ifa *a;
- WALK_LIST(iface, iface_list)
+ WALK_LIST(iface, global_iface_list)
{
if (! (iface->flags & IF_UP))
continue;
@@ -1271,7 +1271,7 @@ ospf_reconfigure_ifaces3(struct ospf_proto *p)
struct iface *iface;
struct ifa *a;
- WALK_LIST(iface, iface_list)
+ WALK_LIST(iface, global_iface_list)
{
if (! (iface->flags & IF_UP))
continue;