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

Diff for /src/usr.bin/ssh/auth-passwd.c between version 1.24 and 1.25

version 1.24, 2002/03/04 12:43:06 version 1.25, 2002/05/06 23:00:59
Line 61 
Line 61 
                 return 0;                  return 0;
         if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)          if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
                 return 0;                  return 0;
         if (*password == '\0' && options.permit_empty_passwd == 0)          if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0)
                 return 0;                  return 0;
 #ifdef KRB5  #ifdef KRB5
         if (options.kerberos_authentication == 1) {          if (options.kerberos_authentication == 1) {

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25