[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.31 and 1.32

version 1.31, 2017/05/31 07:00:13 version 1.32, 2019/01/19 21:33:13
Line 45 
Line 45 
             (r = sshpkt_put_u32(ssh, seq)) != 0 ||              (r = sshpkt_put_u32(ssh, seq)) != 0 ||
             (r = sshpkt_send(ssh)) != 0 ||              (r = sshpkt_send(ssh)) != 0 ||
             (r = ssh_packet_write_wait(ssh)) != 0)              (r = ssh_packet_write_wait(ssh)) != 0)
                 sshpkt_fatal(ssh, __func__, r);                  sshpkt_fatal(ssh, r, "%s", __func__);
         return 0;          return 0;
 }  }
   
Line 129 
Line 129 
         int r;          int r;
   
         if ((r = ssh_dispatch_run(ssh, mode, done)) != 0)          if ((r = ssh_dispatch_run(ssh, mode, done)) != 0)
                 sshpkt_fatal(ssh, __func__, r);                  sshpkt_fatal(ssh, r, "%s", __func__);
 }  }

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32