[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.130 and 1.131

version 1.130, 2014/01/29 06:18:35 version 1.131, 2014/07/03 11:16:55
Line 312 
Line 312 
                     (authctxt->attempt > 1 || strcmp(method, "none") != 0))                      (authctxt->attempt > 1 || strcmp(method, "none") != 0))
                         authctxt->failures++;                          authctxt->failures++;
                 if (authctxt->failures >= options.max_authtries)                  if (authctxt->failures >= options.max_authtries)
                         packet_disconnect(AUTH_FAIL_MSG, authctxt->user);                          auth_maxtries_exceeded(authctxt);
                 methods = authmethods_get(authctxt);                  methods = authmethods_get(authctxt);
                 debug3("%s: failure partial=%d next methods=\"%s\"", __func__,                  debug3("%s: failure partial=%d next methods=\"%s\"", __func__,
                     partial, methods);                      partial, methods);

Legend:
Removed from v.1.130  
changed lines
  Added in v.1.131