[Cluster-devel] cluster/cman/lib libcman.c

pcaulfield at sourceware.org pcaulfield at sourceware.org
Fri Jan 5 10:30:54 UTC 2007


CVSROOT:	/cvs/cluster
Module name:	cluster
Changes by:	pcaulfield at sourceware.org	2007-01-05 10:30:54

Modified files:
	cman/lib       : libcman.c 

Log message:
	Send correct length of quorum device name sent to cman.
	Thanks to simone.gotti at email.it for the patch

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman/lib/libcman.c.diff?cvsroot=cluster&r1=1.32&r2=1.33

--- cluster/cman/lib/libcman.c	2006/12/19 10:55:00	1.32
+++ cluster/cman/lib/libcman.c	2007/01/05 10:30:53	1.33
@@ -1002,7 +1002,7 @@
 
 	memcpy(buf, &votes, sizeof(int));
 	strcpy(buf+sizeof(int), name);
-	return info_call(h, CMAN_CMD_REG_QUORUMDEV, buf, strlen(name)+sizeof(int), NULL, 0);
+	return info_call(h, CMAN_CMD_REG_QUORUMDEV, buf, strlen(name)+1+sizeof(int), NULL, 0);
 }
 
 int cman_unregister_quorum_device(cman_handle_t handle)




More information about the Cluster-devel mailing list