From 0032c765bc925de0e750da2925c68ac1e0237c3f Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Mon, 9 Oct 2006 07:41:46 +0000 Subject: [PATCH] Enable commit tokens to be processed properly in all circumstances. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1255 fd59a12c-fef9-0310-b244-a6a79926bd2f --- exec/totemsrp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exec/totemsrp.c b/exec/totemsrp.c index 02de6941..a9d06fe4 100644 --- a/exec/totemsrp.c +++ b/exec/totemsrp.c @@ -3941,9 +3941,9 @@ static int message_handler_memb_commit_token ( break; case MEMB_STATE_COMMIT: - if (memcmp (&memb_commit_token->ring_id, &instance->my_ring_id, - sizeof (struct memb_ring_id)) == 0) { -// if (memb_commit_token->ring_id.seq == instance->my_ring_id.seq) { +// if (memcmp (&memb_commit_token->ring_id, &instance->my_ring_id, +// sizeof (struct memb_ring_id)) == 0) { + if (memb_commit_token->ring_id.seq == instance->my_ring_id.seq) { memb_state_recovery_enter (instance, memb_commit_token); } break;