From: hasso Date: Thu, 26 Aug 2004 18:19:59 +0000 (+0000) Subject: Merge svn revision 954 from Zebra cvs. X-Git-Tag: frr-2.0-rc1~3603 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=6861b307d6fd6d936d699b23ca4fb4c47180e068;p=matthieu%2Ffrr.git Merge svn revision 954 from Zebra cvs. --- diff --git a/ospf6d/ospf6_flood.c b/ospf6d/ospf6_flood.c index 660e63695b..ec5c1c6833 100644 --- a/ospf6d/ospf6_flood.c +++ b/ospf6d/ospf6_flood.c @@ -194,9 +194,10 @@ ospf6_decrement_retrans_count (struct ospf6_lsa *lsa) orig = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id, lsa->header->adv_router, lsdb); if (orig) - orig->retrans_count--; - - assert (orig->retrans_count >= 0); + { + orig->retrans_count--; + assert (orig->retrans_count >= 0); + } } /* RFC2328 section 13.2 Installing LSAs in the database */