[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.176 and 1.177

version 1.176, 2008/02/08 23:24:08 version 1.177, 2008/02/10 10:54:28
Line 1217 
Line 1217 
   
         case sChrootDirectory:          case sChrootDirectory:
                 charptr = &options->chroot_directory;                  charptr = &options->chroot_directory;
                 goto parse_filename;  
                   arg = strdelim(&cp);
                   if (!arg || *arg == '\0')
                           fatal("%s line %d: missing file name.",
                               filename, linenum);
                   if (*activep && *charptr == NULL)
                           *charptr = xstrdup(arg);
                   break;
   
         case sDeprecated:          case sDeprecated:
                 logit("%s line %d: Deprecated option %s",                  logit("%s line %d: Deprecated option %s",

Legend:
Removed from v.1.176  
changed lines
  Added in v.1.177