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

Diff for /src/usr.bin/ssh/Attic/sftp-int.c between version 1.38 and 1.39

version 1.38, 2001/07/09 07:04:53 version 1.39, 2001/07/31 12:42:50
Line 206 
Line 206 
   
         ret = xmalloc(len);          ret = xmalloc(len);
         strlcpy(ret, p1, len);          strlcpy(ret, p1, len);
         strlcat(ret, "/", len);          if (strcmp(p1, "/") != 0)
                   strlcat(ret, "/", len);
         strlcat(ret, p2, len);          strlcat(ret, p2, len);
   
         return(ret);          return(ret);

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39