[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.258 and 1.259

version 1.258, 2015/01/13 07:39:19 version 1.259, 2015/01/16 06:40:12
Line 26 
Line 26 
 #include <string.h>  #include <string.h>
 #include <signal.h>  #include <signal.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
 #include <stdarg.h>  #include <stdarg.h>
 #include <errno.h>  #include <errno.h>
 #include <util.h>  #include <util.h>
Line 529 
Line 530 
 char *  char *
 derelativise_path(const char *path)  derelativise_path(const char *path)
 {  {
         char *expanded, *ret, cwd[MAXPATHLEN];          char *expanded, *ret, cwd[PATH_MAX];
   
         if (strcasecmp(path, "none") == 0)          if (strcasecmp(path, "none") == 0)
                 return xstrdup("none");                  return xstrdup("none");

Legend:
Removed from v.1.258  
changed lines
  Added in v.1.259