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

Diff for /src/usr.bin/ssh/monitor.c between version 1.151 and 1.152

version 1.151, 2015/08/21 23:29:31 version 1.152, 2015/09/02 07:51:12
Line 626 
Line 626 
                         fatal("%s: sshbuf_new", __func__);                          fatal("%s: sshbuf_new", __func__);
                 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||                  if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 ||
                     (r = sshbuf_put_string(sigbuf, session_id2,                      (r = sshbuf_put_string(sigbuf, session_id2,
                     session_id2_len) != 0) ||                      session_id2_len)) != 0 ||
                     (r = sshkey_puts(key, sigbuf)) != 0)                      (r = sshkey_puts(key, sigbuf)) != 0)
                         fatal("%s: couldn't prepare private key "                          fatal("%s: couldn't prepare private key "
                             "proof buffer: %s", __func__, ssh_err(r));                              "proof buffer: %s", __func__, ssh_err(r));

Legend:
Removed from v.1.151  
changed lines
  Added in v.1.152