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

Diff for /src/usr.bin/ssh/authfd.c between version 1.110 and 1.111

version 1.110, 2018/07/03 11:39:54 version 1.111, 2018/07/09 21:59:10
Line 131 
Line 131 
   
         /* Send the length and then the packet to the agent. */          /* Send the length and then the packet to the agent. */
         if (atomicio(vwrite, sock, buf, 4) != 4 ||          if (atomicio(vwrite, sock, buf, 4) != 4 ||
             atomicio(vwrite, sock, (u_char *)sshbuf_ptr(request),              atomicio(vwrite, sock, sshbuf_mutable_ptr(request),
             sshbuf_len(request)) != sshbuf_len(request))              sshbuf_len(request)) != sshbuf_len(request))
                 return SSH_ERR_AGENT_COMMUNICATION;                  return SSH_ERR_AGENT_COMMUNICATION;
         /*          /*

Legend:
Removed from v.1.110  
changed lines
  Added in v.1.111