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

Diff for /src/usr.bin/ssh/channels.c between version 1.383 and 1.384

version 1.383, 2018/07/11 18:53:29 version 1.384, 2018/07/27 12:03:17
Line 598 
Line 598 
         if (c->type == SSH_CHANNEL_MUX_CLIENT)          if (c->type == SSH_CHANNEL_MUX_CLIENT)
                 mux_remove_remote_forwardings(ssh, c);                  mux_remove_remote_forwardings(ssh, c);
   
         s = channel_open_message(ssh);          if (log_level_get() >= SYSLOG_LEVEL_DEBUG3) {
         debug3("channel %d: status: %s", c->self, s);                  s = channel_open_message(ssh);
         free(s);                  debug3("channel %d: status: %s", c->self, s);
                   free(s);
           }
   
         channel_close_fds(ssh, c);          channel_close_fds(ssh, c);
         sshbuf_free(c->input);          sshbuf_free(c->input);

Legend:
Removed from v.1.383  
changed lines
  Added in v.1.384