[Cluster-devel] cluster/cman/cman_tool join.c

pcaulfield at sourceware.org pcaulfield at sourceware.org
Wed Feb 14 09:37:53 UTC 2007


CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2007-02-14 09:37:52

Modified files:
	cman/cman_tool : join.c 

Log message:
	Don't report 0 exit status as a failure.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/cman_tool/join.c.diff?cvsroot=cluster&r1=1.48&r2=1.49

--- cluster/cman/cman_tool/join.c	2006/12/07 09:54:14	1.48
+++ cluster/cman/cman_tool/join.c	2007/02/14 09:37:52	1.49
@@ -169,7 +169,7 @@
 			}
 			else {
 				int pidstatus;
-				if (waitpid(aisexec_pid, &pidstatus, WNOHANG) == 0)
+				if (waitpid(aisexec_pid, &pidstatus, WNOHANG) == 0 && pidstatus != 0)
 					fprintf(stderr, "cman died with status: %d\n", WEXITSTATUS(pidstatus));
 				else
 					status = 0; /* Try to connect */




More information about the Cluster-devel mailing list