[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.13 and 1.14

version 1.13, 2010/01/29 20:16:17 version 1.14, 2010/01/30 02:54:53
Line 197 
Line 197 
                         debug2("%s: channel %d: not open", __func__, sc->self);                          debug2("%s: channel %d: not open", __func__, sc->self);
                         chan_mark_dead(sc);                          chan_mark_dead(sc);
                 } else {                  } else {
                         chan_read_failed(sc);                          if (sc->istate == CHAN_INPUT_OPEN)
                         chan_write_failed(sc);                                  chan_read_failed(sc);
                           if (sc->ostate == CHAN_OUTPUT_OPEN)
                                   chan_write_failed(sc);
                 }                  }
         }          }
         channel_cancel_cleanup(c->self);          channel_cancel_cleanup(c->self);

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14