diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-09 14:54:30 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-09 14:54:30 +0200 |
commit | 0ab500803f48442c85e91f27ab180237babe7a49 (patch) | |
tree | d8dceaa8b2b699668b6e1f2cb117b07b93fe9c57 /ospf6d | |
parent | Merge pull request #1310 from vjardin6WIND/null_references (diff) | |
download | frr-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.h | 2 |
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; |