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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.306 and 1.307

version 1.306, 2019/06/28 13:35:04 version 1.307, 2019/07/07 01:05:00
Line 562 
Line 562 
         Authctxt *authctxt = ssh->authctxt;          Authctxt *authctxt = ssh->authctxt;
         char *authlist = NULL;          char *authlist = NULL;
         u_char partial;          u_char partial;
         int r;  
   
         if (authctxt == NULL)          if (authctxt == NULL)
                 fatal("input_userauth_failure: no authentication context");                  fatal("input_userauth_failure: no authentication context");
   
         if ((r = sshpkt_get_cstring(ssh, &authlist, NULL)) != 0 ||          if (sshpkt_get_cstring(ssh, &authlist, NULL) != 0 ||
             (r = sshpkt_get_u8(ssh, &partial)) != 0 ||              sshpkt_get_u8(ssh, &partial) != 0 ||
             (r = sshpkt_get_end(ssh)) != 0)              sshpkt_get_end(ssh) != 0)
                 goto out;                  goto out;
   
         if (partial != 0) {          if (partial != 0) {

Legend:
Removed from v.1.306  
changed lines
  Added in v.1.307