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

Diff for /src/usr.bin/ssh/auth2-pubkey.c between version 1.81 and 1.82

version 1.81, 2018/07/09 21:35:50 version 1.82, 2018/07/11 18:55:11
Line 215 
Line 215 
                             != 0 ||                              != 0 ||
                             (r = sshpkt_put_cstring(ssh, pkalg)) != 0 ||                              (r = sshpkt_put_cstring(ssh, pkalg)) != 0 ||
                             (r = sshpkt_put_string(ssh, pkblob, blen)) != 0 ||                              (r = sshpkt_put_string(ssh, pkblob, blen)) != 0 ||
                             (r = sshpkt_send(ssh)) != 0)                              (r = sshpkt_send(ssh)) != 0 ||
                               (r = ssh_packet_write_wait(ssh)) != 0)
                                 fatal("%s: %s", __func__, ssh_err(r));                                  fatal("%s: %s", __func__, ssh_err(r));
                         ssh_packet_write_wait(ssh);  
                         authctxt->postponed = 1;                          authctxt->postponed = 1;
                 }                  }
         }          }

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82