summaryrefslogtreecommitdiffstats
path: root/ospf6d
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-10-09 14:54:30 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-10-09 14:54:30 +0200
commit0ab500803f48442c85e91f27ab180237babe7a49 (patch)
treed8dceaa8b2b699668b6e1f2cb117b07b93fe9c57 /ospf6d
parentMerge pull request #1310 from vjardin6WIND/null_references (diff)
downloadfrr-0ab500803f48442c85e91f27ab180237babe7a49.tar.xz
frr-0ab500803f48442c85e91f27ab180237babe7a49.zip
ospf6d: Fix snmp compile breakage
The recent clang fixes for Static Analysis were run without compiling `--enable-snmp` these changes broke the snmp build. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d')
-rw-r--r--ospf6d/ospf6_lsa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_lsa.h b/ospf6d/ospf6_lsa.h
index 8b6303d23..3536d33d1 100644
--- a/ospf6d/ospf6_lsa.h
+++ b/ospf6d/ospf6_lsa.h
@@ -155,7 +155,7 @@ struct ospf6_lsa_handler {
};
#define OSPF6_LSA_IS_KNOWN(t) \
- (ospf6_get_lsa_handler(t).lh_type != OSPF6_LSTYPE_UNKNOWN ? 1 : 0)
+ (ospf6_get_lsa_handler(t)->lh_type != OSPF6_LSTYPE_UNKNOWN ? 1 : 0)
extern vector ospf6_lsa_handler_vector;