diff options
| author | Alvaro Herrera | 2007-01-19 16:42:24 +0000 |
|---|---|---|
| committer | Alvaro Herrera | 2007-01-19 16:42:24 +0000 |
| commit | 5b4a08896bd6ee7d93f74c77f61d3518deda8fd5 (patch) | |
| tree | 7489cd039625b73a219a7579a505e537621133fd /src/port | |
| parent | 16f372d940823d08bc7271cf1057f062390efe2b (diff) | |
Change the sed rules in the regression test for pg_regress hackery to create
the generated files, to help Visual C++ to run these tests. The tests still
pass in VPATH and normal builds.
Patch from Magnus Hagander, editorialized by me.
Diffstat (limited to 'src/port')
| -rw-r--r-- | src/port/dirmod.c | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/src/port/dirmod.c b/src/port/dirmod.c index 06f66305cac..e1f7527b33d 100644 --- a/src/port/dirmod.c +++ b/src/port/dirmod.c @@ -10,7 +10,7 @@ * Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.46 2007/01/05 22:20:02 momjian Exp $ + * $PostgreSQL: pgsql/src/port/dirmod.c,v 1.47 2007/01/19 16:42:24 alvherre Exp $ * *------------------------------------------------------------------------- */ @@ -287,12 +287,14 @@ pgsymlink(const char *oldpath, const char *newpath) /* - * fnames + * pgfnames * - * return a list of the names of objects in the argument directory + * return a list of the names of objects in the argument directory. Caller + * must call pgfnames_cleanup later to free the memory allocated by this + * function. */ -static char ** -fnames(char *path) +char ** +pgfnames(char *path) { DIR *dir; struct dirent *file; @@ -357,12 +359,12 @@ fnames(char *path) /* - * fnames_cleanup + * pgfnames_cleanup * * deallocate memory used for filenames */ -static void -fnames_cleanup(char **filenames) +void +pgfnames_cleanup(char **filenames) { char **fn; @@ -394,7 +396,7 @@ rmtree(char *path, bool rmtopdir) * we copy all the names out of the directory before we start modifying * it. */ - filenames = fnames(path); + filenames = pgfnames(path); if (filenames == NULL) return false; @@ -415,7 +417,7 @@ rmtree(char *path, bool rmtopdir) if (!rmtree(filepath, true)) { /* we already reported the error */ - fnames_cleanup(filenames); + pgfnames_cleanup(filenames); return false; } } @@ -433,7 +435,7 @@ rmtree(char *path, bool rmtopdir) goto report_and_fail; } - fnames_cleanup(filenames); + pgfnames_cleanup(filenames); return true; report_and_fail: @@ -444,6 +446,6 @@ report_and_fail: fprintf(stderr, _("could not remove file or directory \"%s\": %s\n"), filepath, strerror(errno)); #endif - fnames_cleanup(filenames); + pgfnames_cleanup(filenames); return false; } |
