[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.204 and 1.205

version 1.204, 2010/03/04 10:36:03 version 1.205, 2010/03/12 01:06:25
Line 1180 
Line 1180 
                 charptr = (opcode == sAuthorizedKeysFile) ?                  charptr = (opcode == sAuthorizedKeysFile) ?
                     &options->authorized_keys_file :                      &options->authorized_keys_file :
                     &options->authorized_keys_file2;                      &options->authorized_keys_file2;
                 goto parse_filename;                  arg = strdelim(&cp);
                   if (!arg || *arg == '\0')
                           fatal("%s line %d: missing file name.",
                               filename, linenum);
                   if (*activep && *charptr == NULL) {
                           *charptr = derelativise_path(arg);
                           /* increase optional counter */
                           if (intptr != NULL)
                                   *intptr = *intptr + 1;
                   }
                   break;
   
         case sClientAliveInterval:          case sClientAliveInterval:
                 intptr = &options->client_alive_interval;                  intptr = &options->client_alive_interval;

Legend:
Removed from v.1.204  
changed lines
  Added in v.1.205