[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.286 and 1.287

version 1.286, 2008/07/16 11:52:19 version 1.287, 2008/11/01 06:43:33
Line 686 
Line 686 
         Channel *c = channel_lookup(id);          Channel *c = channel_lookup(id);
   
         if (c == NULL) {          if (c == NULL) {
                 logit("channel_register_open_comfirm: %d: bad id", id);                  logit("channel_register_open_confirm: %d: bad id", id);
                 return;                  return;
         }          }
         c->open_confirm = fn;          c->open_confirm = fn;
Line 2363 
Line 2363 
         remote_id = packet_get_int();          remote_id = packet_get_int();
         packet_check_eom();          packet_check_eom();
   
         debug2("channel_input_confirm: type %d id %d", type, remote_id);          debug2("channel_input_status_confirm: type %d id %d", type, remote_id);
   
         if ((c = channel_lookup(remote_id)) == NULL) {          if ((c = channel_lookup(remote_id)) == NULL) {
                 logit("channel_input_success_failure: %d: unknown", remote_id);                  logit("channel_input_status_confirm: %d: unknown", remote_id);
                 return;                  return;
         }          }
         ;          ;

Legend:
Removed from v.1.286  
changed lines
  Added in v.1.287