[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.14 and 1.15

version 1.14, 2010/01/30 02:54:53 version 1.15, 2010/04/10 05:48:16
Line 189 
Line 189 
                 fatal("%s: channel_by_id(%i) == NULL", __func__, cid);                  fatal("%s: channel_by_id(%i) == NULL", __func__, cid);
         if (c->remote_id != -1) {          if (c->remote_id != -1) {
                 if ((sc = channel_by_id(c->remote_id)) == NULL)                  if ((sc = channel_by_id(c->remote_id)) == NULL)
                         debug2("%s: channel %d n session channel %d",                          fatal("%s: channel %d missing session channel %d",
                             __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;

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