[BACK]Return to security CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/Attic/security between version 1.82 and 1.83

version 1.82, 2009/03/23 15:14:50 version 1.83, 2009/05/04 00:37:03
Line 112 
Line 112 
                 printf("Group %s has non-alphanumeric characters.\n", $1);                  printf("Group %s has non-alphanumeric characters.\n", $1);
         if (length($1) > 31)          if (length($1) > 31)
                 printf("Group %s has more than 31 characters.\n", $1);                  printf("Group %s has more than 31 characters.\n", $1);
         if ($3 !~ /[0-9]*/)          if ($3 !~ /^[0-9]*$/)
                 printf("Login %s has a negative group ID.\n", $1);                  printf("Group %s has an invalid group ID.\n", $1);
 }' < $GRP > $OUTPUT  }' < $GRP > $OUTPUT
 if [ -s $OUTPUT ] ; then  if [ -s $OUTPUT ] ; then
         echo "\nChecking the ${GRP} file:"          echo "\nChecking the ${GRP} file:"

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83