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

Diff for /src/usr.bin/ssh/servconf.c between version 1.92 and 1.93

version 1.92, 2001/11/17 19:14:34 version 1.93, 2001/12/05 10:06:12
Line 769 
Line 769 
                         break;                          break;
   
                 case sSubsystem:                  case sSubsystem:
                         if(options->num_subsystems >= MAX_SUBSYSTEMS) {                          if (options->num_subsystems >= MAX_SUBSYSTEMS) {
                                 fatal("%s line %d: too many subsystems defined.",                                  fatal("%s line %d: too many subsystems defined.",
                                       filename, linenum);                                        filename, linenum);
                         }                          }
Line 778 
Line 778 
                                 fatal("%s line %d: Missing subsystem name.",                                  fatal("%s line %d: Missing subsystem name.",
                                       filename, linenum);                                        filename, linenum);
                         for (i = 0; i < options->num_subsystems; i++)                          for (i = 0; i < options->num_subsystems; i++)
                                 if(strcmp(arg, options->subsystem_name[i]) == 0)                                  if (strcmp(arg, options->subsystem_name[i]) == 0)
                                         fatal("%s line %d: Subsystem '%s' already defined.",                                          fatal("%s line %d: Subsystem '%s' already defined.",
                                               filename, linenum, arg);                                                filename, linenum, arg);
                         options->subsystem_name[options->num_subsystems] = xstrdup(arg);                          options->subsystem_name[options->num_subsystems] = xstrdup(arg);
Line 839 
Line 839 
                 case sDeprecated:                  case sDeprecated:
                         log("%s line %d: Deprecated option %s",                          log("%s line %d: Deprecated option %s",
                             filename, linenum, arg);                              filename, linenum, arg);
                         while(arg)                          while (arg)
                             arg = strdelim(&cp);                              arg = strdelim(&cp);
                         break;                          break;
   

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93