commit: r420 - trunk/daemon

[email protected] Mon, 01 Jun 2009 23:59:20 -0400
Newsgroups gmane.network.spread.cvs
Message-ID <[email protected]>
Author: jonathan
Date: 2009-06-01 23:59:20 -0400 (Mon, 01 Jun 2009)
New Revision: 420

Modified:
   trunk/daemon/protocol.c
Log:
Make warning about token-reset because of message counter wrap more visible
by always printing it (PRINT) instead of only when PROTOCOL is enabled.



Modified: trunk/daemon/protocol.c
===================================================================
--- trunk/daemon/protocol.c	2009-06-02 03:46:12 UTC (rev 419)
+++ trunk/daemon/protocol.c	2009-06-02 03:59:20 UTC (rev 420)
@@ -484,7 +484,7 @@
         /* Deal with wrapping seq values (2^32) by triggering a membership by dropping the token */
         if( (Memb_state() != EVS ) && (Token->seq > MAX_WRAP_SEQUENCE_VALUE ) )
         {
-            Alarm( PROTOCOL, "Prot_handle_token: Token Sequence number (%ld) approaching 2^31 so trigger membership to reset it.\n", Token->seq);
+            Alarm( PRINT, "Prot_handle_token: Token Sequence number (%ld) approaching 2^31 so trigger membership to reset it.\n", Token->seq);
 
             return;
         }