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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.192 and 1.193

version 1.192, 2008/05/09 14:18:44 version 1.193, 2008/05/09 16:21:13
Line 1652 
Line 1652 
                 error("client_input_channel_req: request for channel -1");                  error("client_input_channel_req: request for channel -1");
         } else if ((c = channel_lookup(id)) == NULL) {          } else if ((c = channel_lookup(id)) == NULL) {
                 error("client_input_channel_req: channel %d: unknown channel", id);                  error("client_input_channel_req: channel %d: unknown channel", id);
           } else if (strcmp(rtype, "eow@openssh.com") == 0) {
                   packet_check_eom();
                   chan_rcvd_eow(c);
         } else if (strcmp(rtype, "exit-status") == 0) {          } else if (strcmp(rtype, "exit-status") == 0) {
                 exitval = packet_get_int();                  exitval = packet_get_int();
                 if (id == session_ident) {                  if (id == session_ident) {

Legend:
Removed from v.1.192  
changed lines
  Added in v.1.193