]> git.puffer.fish Git - matthieu/frr.git/commitdiff
[ospfd] fix undefined effect expression
authorpaul <paul>
Tue, 10 Jan 2006 23:27:05 +0000 (23:27 +0000)
committerpaul <paul>
Tue, 10 Jan 2006 23:27:05 +0000 (23:27 +0000)
2006-01-10 Juris Kalnins <juris@mt.lv>

* ospf_packet.c: (ospf_make_md5_digest) fix odd, if not
  undefined effect, assignment of an increment expression.

ospfd/ChangeLog
ospfd/ospf_packet.c

index 35d353e56f4b37a96678c7261aa0ee822a346d7f..23a109affdb61c88c329fb56fc3e5fb030be936a 100644 (file)
@@ -1,7 +1,22 @@
+2006-01-10 Len Sorensen <lennartsorensen@ruggedcom.com>
+
+       * (general) Bug #234, see also [quagga-dev 3902].
+         Fix problem with nbr_self not being properly reinitialised
+         when an interface comes up, after having been down.
+       * ospf_neighbor.c: (ospf_nbr_add_self) centralise
+         initialisation of nbr_self parameters here.
+       * ospf_interface.c: (ospf_if_new) deleting initialisation of
+         parameters of nbr_self, just rely on call to
+         ospf_nbr_add_self.
+         (ospf_if_cleanup) ditto.
+       * ospfd.c: (ospf_network_run) ditto.
+
 2006-01-10 Juris Kalnins <juris@mt.lv>
 
        * ospf_zebra.c: (ospf_interface_address_delete) fix rare leak of 
          struct connected in an error case.
+       * ospf_packet.c: (ospf_make_md5_digest) fix odd, if not
+         undefined effect, assignment of an increment expression.
 
 2006-01-10 Paul Jakma <paul.jakma@sun.com>
 
index eb97ddbf00f6273f39708bc440220e0c3b9c3449..54b30ca750d41db0b61100062424228f7abe3f59 100644 (file)
@@ -339,7 +339,11 @@ ospf_make_md5_digest (struct ospf_interface *oi, struct ospf_packet *op)
   /* We do this here so when we dup a packet, we don't have to
      waste CPU rewriting other headers. */
   t = (time(NULL) & 0xFFFFFFFF);
-  oi->crypt_seqnum = ( t > oi->crypt_seqnum ? t : oi->crypt_seqnum++);
+  if (t > oi->crypt_seqnum)
+    oi->crypt_seqnum = t;
+  else
+    oi->crypt_seqnum++;
+  
   ospfh->u.crypt.crypt_seqnum = htonl (oi->crypt_seqnum); 
 
   /* Get MD5 Authentication key from auth_key list. */