diff -r eb483d8f65b7 fencing/stonithd/stonithd.c --- a/fencing/stonithd/stonithd.c Thu Dec 03 14:40:06 2009 +0900 +++ b/fencing/stonithd/stonithd.c Thu Dec 03 14:42:30 2009 +0900 @@ -2771,6 +2771,14 @@ " %s", srsc->stonith_obj->stype); return TRUE; } + if ( strncasecmp(node_name, *this, MAXCMP) == 0 ) { + stonithd_log2(LOG_WARNING, "stonith type found:" + " %s." + "But, There is difference in the small and capital letter between a node name" + "(%s : %s). " + "Please confirm setting of STONITH.", srsc->stonith_obj->stype, node_name, *this); + return TRUE; + } } return FALSE; }