[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.288 and 1.289

version 1.288, 2008/11/11 03:55:11 version 1.289, 2008/12/02 19:09:38
Line 2355 
Line 2355 
 {  {
         Channel *c;          Channel *c;
         struct channel_confirm *cc;          struct channel_confirm *cc;
         int remote_id;          int id;
   
         /* Reset keepalive timeout */          /* Reset keepalive timeout */
         keep_alive_timeouts = 0;          keep_alive_timeouts = 0;
   
         remote_id = packet_get_int();          id = packet_get_int();
         packet_check_eom();          packet_check_eom();
   
         debug2("channel_input_status_confirm: type %d id %d", type, remote_id);          debug2("channel_input_status_confirm: type %d id %d", type, id);
   
         if ((c = channel_lookup(remote_id)) == NULL) {          if ((c = channel_lookup(id)) == NULL) {
                 logit("channel_input_status_confirm: %d: unknown", remote_id);                  logit("channel_input_status_confirm: %d: unknown", id);
                 return;                  return;
         }          }
         ;          ;

Legend:
Removed from v.1.288  
changed lines
  Added in v.1.289