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

Diff for /src/usr.bin/ssh/mux.c between version 1.11 and 1.12

version 1.11, 2010/01/26 02:15:20 version 1.12, 2010/01/27 13:26:17
Line 193 
Line 193 
                             __func__, c->self, c->remote_id);                              __func__, c->self, c->remote_id);
                 c->remote_id = -1;                  c->remote_id = -1;
                 sc->ctl_chan = -1;                  sc->ctl_chan = -1;
                 chan_mark_dead(sc);                  if (sc->type != SSH_CHANNEL_OPEN) {
                           debug2("%s: channel %d: not open", __func__, sc->self);
                           chan_mark_dead(c);
                   } else {
                           chan_read_failed(sc);
                           chan_write_failed(sc);
                   }
         }          }
         channel_cancel_cleanup(c->self);          channel_cancel_cleanup(c->self);
 }  }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12