fix compilation on linux, TODO: accept wildcards
authorguido <guido@svn.reactos.org>
Tue, 7 Oct 2003 22:00:32 +0000 (22:00 +0000)
committerguido <guido@svn.reactos.org>
Tue, 7 Oct 2003 22:00:32 +0000 (22:00 +0000)
svn path=/trunk/; revision=6266

reactos/tools/rcopy.c

index 54ed89f..968ec3a 100644 (file)
@@ -28,13 +28,13 @@ make_absolute(char *absolute, char *path)
 #ifndef WIN32
   if (path[0] == DIR_SEPARATOR_CHAR)
     {
-      strcpy(buf, path);
+      strcpy(absolute, path);
     }
   else
     {
-      getcwd(buf, sizeof(buf));
-      strcat(buf, DIR_SEPARATOR_STRING);
-      strcat(buf, path);
+      getcwd(absolute, sizeof(absolute));
+      strcat(absolute, DIR_SEPARATOR_STRING);
+      strcat(absolute, path);
     }
 #else
   _fullpath(absolute, path, MAX_PATH);