[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.130 and 1.131

version 1.130, 2003/11/14 13:19:09 version 1.131, 2003/11/17 09:45:39
Line 1238 
Line 1238 
         buffer_init(&b);          buffer_init(&b);
         buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */          buffer_put_int(&b, packet_get_connection_in()); /* send # of socket */
         buffer_put_string(&b, data, datalen);          buffer_put_string(&b, data, datalen);
         ssh_msg_send(to[1], version, &b);          if (ssh_msg_send(to[1], version, &b) == -1)
                   fatal("ssh_keysign: couldn't send request");
   
         if (ssh_msg_recv(from[0], &b) < 0) {          if (ssh_msg_recv(from[0], &b) < 0) {
                 error("ssh_keysign: no reply");                  error("ssh_keysign: no reply");

Legend:
Removed from v.1.130  
changed lines
  Added in v.1.131