Browse Source

add assert around clmNodeJoinSend since the call to
gmi_mcast can return a failure now.

(Logical change 1.82)


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

Mark Haverkamp 21 years ago
parent
commit
b9950ca373
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exec/clm.c

+ 1 - 1
exec/clm.c

@@ -401,7 +401,7 @@ static int clm_confchg_fn (
 	 * Send node information to other nodes
 	 */
 	if (joined_list_entries) {
-		clmNodeJoinSend ();
+		assert (clmNodeJoinSend () == 0);
 	}
 	for (i = 0; i < left_list_entries; i++) {
 		nodes[i] = left_list[i].sin_addr.s_addr;