summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_neighbor.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2018-09-04 12:55:19 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2018-09-09 01:16:25 +0200
commit01db90cd83edbcd2f806ece2c2d1620478f51c8f (patch)
treeeb9760aaaa3b46d556f8a4773b97fbfefd103f31 /ospf6d/ospf6_neighbor.c
parent*: fix some random warnings (diff)
downloadfrr-01db90cd83edbcd2f806ece2c2d1620478f51c8f.tar.xz
frr-01db90cd83edbcd2f806ece2c2d1620478f51c8f.zip
ospf6d: remove extra struct in ospf6_lsa_handler
This serves no other purpose than to generate stupid warnings for overwritten initializers on old gcc versions. Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'ospf6d/ospf6_neighbor.c')
-rw-r--r--ospf6d/ospf6_neighbor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_neighbor.c b/ospf6d/ospf6_neighbor.c
index 0cc7294d6..4c24f4713 100644
--- a/ospf6d/ospf6_neighbor.c
+++ b/ospf6d/ospf6_neighbor.c
@@ -921,7 +921,7 @@ DEFUN (no_debug_ospf6,
handler = vector_slot(ospf6_lsa_handler_vector, i);
if (handler != NULL) {
- UNSET_FLAG(handler->debug, OSPF6_LSA_DEBUG);
+ UNSET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG);
}
}