1 file changed, 1 insertion(+), 1 deletion(-)
lib/common/utils.c |    2 +-

# HG changeset patch
# User Andrew Beekhof <[EMAIL PROTECTED]>
# Date 1226393775 -3600
# Branch stable-1.0
# Node ID c57beb84ee34df29fb099af9dcf3fa01a647fcff
# Parent  e23b4de649b3c2b70613a7851d1ba96e7d84dff9
Low: Core: Use the correct str_to_boolean function in crm_is_true()

diff --git a/lib/common/utils.c b/lib/common/utils.c
--- a/lib/common/utils.c
+++ b/lib/common/utils.c
@@ -761,7 +761,7 @@ crm_is_true(const char * s)
 {
 	gboolean ret = FALSE;
 	if(s != NULL) {
-		cl_str_to_boolean(s, &ret);
+		crm_str_to_boolean(s, &ret);
 	}
 	return ret;
 }
_______________________________________________
Pacemaker mailing list
Pacemaker@clusterlabs.org
http://list.clusterlabs.org/mailman/listinfo/pacemaker

Reply via email to