[BACK]Return to new_pwd.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / passwd

Diff for /src/usr.bin/passwd/Attic/new_pwd.c between version 1.6 and 1.7

version 1.6, 2005/05/01 02:56:28 version 1.7, 2007/03/20 03:50:39
Line 73 
Line 73 
                 return "That password collides with a system feature. Choose another.\n";                  return "That password collides with a system feature. Choose another.\n";
   
         /* Don't allow all lower case passwords regardless of length */          /* Don't allow all lower case passwords regardless of length */
         for (t = pword; *t && islower(*t); t++)          for (t = pword; islower(*t); t++)
                 ;                  ;
         if (*t == 0)          if (*t == 0)
                 return "Please don't use an all-lower case password.\n"                  return "Please don't use an all-lower case password.\n"

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7