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

Diff for /src/usr.bin/ssh/readconf.c between version 1.298 and 1.299

version 1.298, 2018/09/20 03:30:44 version 1.299, 2018/10/03 06:38:35
Line 1685 
Line 1685 
   
         case oIdentityAgent:          case oIdentityAgent:
                 charptr = &options->identity_agent;                  charptr = &options->identity_agent;
                 goto parse_string;                  arg = strdelim(&s);
                   if (!arg || *arg == '\0')
                           fatal("%.200s line %d: Missing argument.",
                               filename, linenum);
                   /* Extra validation if the string represents an env var. */
                   if (arg[0] == '$' && !valid_env_name(arg + 1)) {
                           fatal("%.200s line %d: Invalid environment name %s.",
                               filename, linenum, arg);
                   }
                   if (*activep && *charptr == NULL)
                           *charptr = xstrdup(arg);
                   break;
   
         case oDeprecated:          case oDeprecated:
                 debug("%s line %d: Deprecated option \"%s\"",                  debug("%s line %d: Deprecated option \"%s\"",

Legend:
Removed from v.1.298  
changed lines
  Added in v.1.299