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

Diff for /src/etc/Attic/security between version 1.43 and 1.44

version 1.43, 2000/12/22 08:04:48 version 1.44, 2001/01/31 19:12:10
Line 39 
Line 39 
                 printf("Line %d has an empty login field:\n%s\n", NR, $0);                  printf("Line %d has an empty login field:\n%s\n", NR, $0);
         else if ($1 !~ /^[A-Za-z0-9][A-Za-z0-9_-]*$/)          else if ($1 !~ /^[A-Za-z0-9][A-Za-z0-9_-]*$/)
                 printf("Login %s has non-alphanumeric characters.\n", $1);                  printf("Login %s has non-alphanumeric characters.\n", $1);
         if (length($1) > 8)          if (length($1) > 32)
                 printf("Login %s has more than 8 characters.\n", $1);                  printf("Login %s has more than 32 characters.\n", $1);
         if ($2 == "")          if ($2 == "")
                 printf("Login %s has no password.\n", $1);                  printf("Login %s has no password.\n", $1);
         if ($2 != "" && length($2) != 13 && ($10 ~ /.*sh$/ || $10 == "") &&          if ($2 != "" && length($2) != 13 && ($10 ~ /.*sh$/ || $10 == "") &&

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44