[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.121 and 1.122

version 1.121, 2009/06/22 05:39:28 version 1.122, 2010/08/31 09:58:37
Line 169 
Line 169 
         Authctxt *authctxt = ctxt;          Authctxt *authctxt = ctxt;
         u_int len;          u_int len;
         int acceptit = 0;          int acceptit = 0;
         char *service = packet_get_string(&len);          char *service = packet_get_cstring(&len);
         packet_check_eom();          packet_check_eom();
   
         if (authctxt == NULL)          if (authctxt == NULL)
Line 208 
Line 208 
         if (authctxt == NULL)          if (authctxt == NULL)
                 fatal("input_userauth_request: no authctxt");                  fatal("input_userauth_request: no authctxt");
   
         user = packet_get_string(NULL);          user = packet_get_cstring(NULL);
         service = packet_get_string(NULL);          service = packet_get_cstring(NULL);
         method = packet_get_string(NULL);          method = packet_get_cstring(NULL);
         debug("userauth-request for user %s service %s method %s", user, service, method);          debug("userauth-request for user %s service %s method %s", user, service, method);
         debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);          debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
   

Legend:
Removed from v.1.121  
changed lines
  Added in v.1.122