Index: comment_cck.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_cck/comment_cck.module,v
retrieving revision 1.9
diff -u -p -r1.9 comment_cck.module
--- comment_cck.module	16 Jun 2008 06:29:13 -0000	1.9
+++ comment_cck.module	12 Jul 2008 04:40:33 -0000
@@ -5,15 +5,14 @@
  * Implementation of hook_perm().
  */
 function comment_cck_perm() {
-  return array('allow fields to be changed');
+  return array('change cck fields through comments');
 }
 
-
 /**
- * Implementation of hook_form_alter.
+ * Implementation of hook_form_alter().
  */
 function comment_cck_form_alter(&$form, &$form_state, $form_id) {
-  if ($form_id == 'comment_form' && user_access('allow fields to be changed')) {
+  if ($form_id == 'comment_form' && user_access('change cck fields through comments')) {
     $node = node_load($form['nid']['#value']);
     // Check if fields for this type are enabled
     if (variable_get('comment_cck_node_'. $node->type, FALSE) == TRUE) {
