diff options
author | Hasso Tepper <hasso.tepper@gmail.com> | 2012-10-11 13:15:18 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2012-11-05 21:15:57 +0100 |
commit | 8c9ed279852393804c26e3c8c556a13d08654907 (patch) | |
tree | 540dfd742339845bac1079b89122a4a7b33aaba0 /ospfd/ospf_lsa.c | |
parent | build: check actually-used BSD link state fields (diff) | |
download | frr-8c9ed279852393804c26e3c8c556a13d08654907.tar.xz frr-8c9ed279852393804c26e3c8c556a13d08654907.zip |
ospfd: remove some buggy extra ';' symbols.
* ospfd/ospf_apiserver.c: extra ; causing lookup to fail always
* ospfd/ospf_lsa.c: extra ; causing debug output even when disabled
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_lsa.c')
-rw-r--r-- | ospfd/ospf_lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c index 5579d8efd..e778251ca 100644 --- a/ospfd/ospf_lsa.c +++ b/ospfd/ospf_lsa.c @@ -1866,7 +1866,7 @@ ospf_translated_nssa_originate (struct ospf *ospf, struct ospf_lsa *type7) if ( (new = ospf_lsa_install (ospf, NULL, new)) == NULL) { - if (IS_DEBUG_OSPF_NSSA); + if (IS_DEBUG_OSPF_NSSA) zlog_debug ("ospf_lsa_translated_nssa_originate(): " "Could not install LSA " "id %s", inet_ntoa (type7->data->id)); |