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

Diff for /src/usr.bin/ssh/dispatch.c between version 1.24 and 1.25

version 1.24, 2015/01/28 22:05:31 version 1.25, 2015/01/30 01:13:33
Line 47 
Line 47 
                 fatal("protocol error");                  fatal("protocol error");
         if ((r = sshpkt_start(ssh, SSH2_MSG_UNIMPLEMENTED)) != 0 ||          if ((r = sshpkt_start(ssh, SSH2_MSG_UNIMPLEMENTED)) != 0 ||
             (r = sshpkt_put_u32(ssh, seq)) != 0 ||              (r = sshpkt_put_u32(ssh, seq)) != 0 ||
             (r = sshpkt_send(ssh)) != 0)              (r = sshpkt_send(ssh)) != 0 ||
                 fatal("%s: %s", __func__, ssh_err(r));              (r = ssh_packet_write_wait(ssh)) != 0)
         ssh_packet_write_wait(ssh);                  sshpkt_fatal(ssh, __func__, r);
         return 0;          return 0;
 }  }
   

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25