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

Diff for /src/usr.bin/ssh/auth2.c between version 1.104 and 1.105

version 1.104, 2003/11/04 08:54:09 version 1.105, 2004/05/23 23:59:53
Line 223 
Line 223 
                 /* now we can break out */                  /* now we can break out */
                 authctxt->success = 1;                  authctxt->success = 1;
         } else {          } else {
                 if (authctxt->failures++ > AUTH_FAIL_MAX)                  if (authctxt->failures++ > options.max_authtries)
                         packet_disconnect(AUTH_FAIL_MSG, authctxt->user);                          packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
                 methods = authmethods_get();                  methods = authmethods_get();
                 packet_start(SSH2_MSG_USERAUTH_FAILURE);                  packet_start(SSH2_MSG_USERAUTH_FAILURE);

Legend:
Removed from v.1.104  
changed lines
  Added in v.1.105