mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:23:03 +00:00
2003-07-11 Casper S. Hornstrup <chorns@users.sourceforge.net>
* tools/rgenstat/rgenstat.c (process_directory): Fix building on Windows. svn path=/trunk/; revision=5072
This commit is contained in:
parent
19f0d68338
commit
3e05a4dcd9
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-07-11 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
|
* tools/rgenstat/rgenstat.c (process_directory): Fix building on Windows.
|
||||||
|
|
||||||
2003-07-11 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
2003-07-11 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
* tools/rgenstat/rgenstat.c (API_INFO): Add filename field.
|
* tools/rgenstat/rgenstat.c (API_INFO): Add filename field.
|
||||||
|
|
|
@ -488,9 +488,9 @@ process_directory (char *path, char *cvspath)
|
||||||
|
|
||||||
strcpy(newcvspath, cvspath);
|
strcpy(newcvspath, cvspath);
|
||||||
strcat(newcvspath, f.name);
|
strcat(newcvspath, f.name);
|
||||||
strcat(newcvspath, '/');
|
strcat(newcvspath, "/");
|
||||||
|
|
||||||
process_directory(buf, cvspath, f.name);
|
process_directory(buf, newcvspath);
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -564,7 +564,7 @@ process_directory (char *path, char *cvspath)
|
||||||
{
|
{
|
||||||
strcpy(newcvspath, cvspath);
|
strcpy(newcvspath, cvspath);
|
||||||
strcat(newcvspath, f.name);
|
strcat(newcvspath, f.name);
|
||||||
strcat(newcvspath, '/');
|
strcat(newcvspath, "/");
|
||||||
|
|
||||||
process_directory(buf, newcvspath);
|
process_directory(buf, newcvspath);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue