[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.342 and 1.343

version 1.342, 2018/09/20 23:40:16 version 1.343, 2018/11/16 03:26:01
Line 652 
Line 652 
         if (strcasecmp(path, "none") == 0)          if (strcasecmp(path, "none") == 0)
                 return xstrdup("none");                  return xstrdup("none");
         expanded = tilde_expand_filename(path, getuid());          expanded = tilde_expand_filename(path, getuid());
         if (*expanded == '/')          if (path_absolute(expanded))
                 return expanded;                  return expanded;
         if (getcwd(cwd, sizeof(cwd)) == NULL)          if (getcwd(cwd, sizeof(cwd)) == NULL)
                 fatal("%s: getcwd: %s", __func__, strerror(errno));                  fatal("%s: getcwd: %s", __func__, strerror(errno));

Legend:
Removed from v.1.342  
changed lines
  Added in v.1.343