[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.58 and 1.59

version 1.58, 2004/07/21 10:33:31 version 1.59, 2004/07/28 09:40:29
Line 71 
Line 71 
         int type = 0;          int type = 0;
   
         debug("Attempting authentication for %s%.100s.",          debug("Attempting authentication for %s%.100s.",
             authctxt->valid ? "" : "illegal user ", authctxt->user);              authctxt->valid ? "" : "invalid user ", authctxt->user);
   
         /* If the user has no password, accept authentication immediately. */          /* If the user has no password, accept authentication immediately. */
         if (options.password_authentication &&          if (options.password_authentication &&
Line 256 
Line 256 
         if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL)          if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL)
                 authctxt->valid = 1;                  authctxt->valid = 1;
         else {          else {
                 debug("do_authentication: illegal user %s", user);                  debug("do_authentication: invalid user %s", user);
                 authctxt->pw = fakepw();                  authctxt->pw = fakepw();
         }          }
   

Legend:
Removed from v.1.58  
changed lines
  Added in v.1.59