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

Diff for /src/usr.bin/ssh/Attic/auth1.c between version 1.35 and 1.36

version 1.35, 2002/02/03 17:53:25 version 1.36, 2002/03/17 20:25:56
Line 345 
Line 345 
         authctxt->style = style;          authctxt->style = style;
   
         /* Verify that the user is a valid user. */          /* Verify that the user is a valid user. */
         pw = getpwnam(user);          pw = getpwnamallow(user);
         if (pw && allowed_user(pw)) {          if (pw) {
                 authctxt->valid = 1;                  authctxt->valid = 1;
                 pw = pwcopy(pw);                  pw = pwcopy(pw);
         } else {          } else {

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36