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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.337 and 1.338

version 1.337, 2020/01/29 08:17:49 version 1.338, 2020/01/30 07:20:57
Line 1384 
Line 1384 
                  * Send as much buffered packet data as possible to the                   * Send as much buffered packet data as possible to the
                  * sender.                   * sender.
                  */                   */
                 if (FD_ISSET(connection_out, writeset))                  if (FD_ISSET(connection_out, writeset)) {
                         ssh_packet_write_poll(ssh);                          if ((r = ssh_packet_write_poll(ssh)) != 0) {
                                   sshpkt_fatal(ssh, r,
                                       "%s: ssh_packet_write_poll", __func__);
                           }
                   }
   
                 /*                  /*
                  * If we are a backgrounded control master, and the                   * If we are a backgrounded control master, and the

Legend:
Removed from v.1.337  
changed lines
  Added in v.1.338