commit | ae128056e9bb1b52e3b6c3263f5f7fd83efa5c3a | [log] [tgz] |
---|---|---|
author | Paul Jakma <paul.jakma@sun.com> | Fri May 12 23:15:30 2006 +0000 |
committer | Paul Jakma <paul.jakma@sun.com> | Fri May 12 23:15:30 2006 +0000 |
tree | 1825628cbfa71ec05ebb8a8162e20a08092922c8 | |
parent | e54e6e57205df19efe3023526b7eb53a9d06fa93 [diff] [blame] |
[ospfd] Fix small error in CID #13 commit 2006-05-13 Paul Jakma <paul.jakma@sun.com> * ospf_lsa.c: (ospf_translated_nssa_refresh) fix the sanity check to match the assert, small error in CID #13 fix.
diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c index d2f593e..7c3be3d 100644 --- a/ospfd/ospf_lsa.c +++ b/ospfd/ospf_lsa.c
@@ -2002,7 +2002,7 @@ /* Sanity checks. */ assert (type7 || type5); - if (!type7 || !type5) + if (!(type7 || type5)) return NULL; if (type7) assert (type7->data);