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

Diff for /src/usr.bin/ssh/session.c between version 1.120 and 1.121

version 1.120, 2002/01/29 14:32:03 version 1.121, 2002/01/29 16:29:02
Line 1292 
Line 1292 
         int i;          int i;
   
         packet_check_eom();          packet_check_eom();
         log("subsystem request for %s", subsys);          log("subsystem request for %.100s", subsys);
   
         for (i = 0; i < options.num_subsystems; i++) {          for (i = 0; i < options.num_subsystems; i++) {
                 if (strcmp(subsys, options.subsystem_name[i]) == 0) {                  if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Line 1310 
Line 1310 
         }          }
   
         if (!success)          if (!success)
                 log("subsystem request for %s failed, subsystem not found",                  log("subsystem request for %.100s failed, subsystem not found",
                     subsys);                      subsys);
   
         xfree(subsys);          xfree(subsys);

Legend:
Removed from v.1.120  
changed lines
  Added in v.1.121