Explorar o código

Fix for BUG 955.
The base event ID needed to be set to one. event zero was being detected
as already delivered and thrown away.



git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@837 fd59a12c-fef9-0310-b244-a6a79926bd2f

Mark Haverkamp %!s(int64=20) %!d(string=hai) anos
pai
achega
caebd89221
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      exec/evt.c

+ 1 - 1
exec/evt.c

@@ -277,7 +277,7 @@ enum recovery_phases {
  */
 
 #define BASE_ID_MASK 0xffffffffLL
-static SaEvtEventIdT 	base_id = 0;
+static SaEvtEventIdT 	base_id = 1;
 static SaEvtEventIdT 	base_id_top = 0;
 static SaClmNodeIdT  	my_node_id = 0;
 static int 			 	checked_in = 0;