[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.355 and 1.356

version 1.355, 2019/12/15 18:57:30 version 1.356, 2019/12/15 20:57:15
Line 1969 
Line 1969 
   
         case sSecurityKeyProvider:          case sSecurityKeyProvider:
                 charptr = &options->sk_provider;                  charptr = &options->sk_provider;
                 goto parse_filename;                  arg = strdelim(&cp);
                   if (!arg || *arg == '\0')
                           fatal("%s line %d: missing file name.",
                               filename, linenum);
                   if (*activep && *charptr == NULL) {
                           *charptr = strcasecmp(arg, "internal") == 0 ?
                               xstrdup(arg) : derelativise_path(arg);
                           /* increase optional counter */
                           if (intptr != NULL)
                                   *intptr = *intptr + 1;
                   }
                   break;
   
         case sIPQoS:          case sIPQoS:
                 arg = strdelim(&cp);                  arg = strdelim(&cp);

Legend:
Removed from v.1.355  
changed lines
  Added in v.1.356