diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-10-06 09:01:18 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-10-06 09:01:18 +0000 |
| commit | c93872d891239b13b3c0c985e3f69bfa5a3cd8a3 (patch) | |
| tree | 4f62d8e98fdc26640e606715ec6fd56c40ec222f /src/bin/initdb/initdb.c | |
| parent | 513e89b44b86abcd5dce44f51f424fbaa2e0126e (diff) | |
| download | postgresql-c93872d891239b13b3c0c985e3f69bfa5a3cd8a3.tar.gz | |
Remove pg_hba.conf 'local' line for Win32 because it doesn't support unix domain
connections.
Andrew Dunstan
Diffstat (limited to 'src/bin/initdb/initdb.c')
| -rw-r--r-- | src/bin/initdb/initdb.c | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 704ce36d8f..ab61221b1f 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -39,7 +39,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * - * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.54 2004/09/02 17:58:41 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.55 2004/10/06 09:01:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -147,6 +147,9 @@ char backend_exec[MAXPGPATH]; static void *xmalloc(size_t size); static char *xstrdup(const char *s); static char **replace_token(char **lines, char *token, char *replacement); +#ifdef WIN32 +static char **filter_lines_with_token(char **lines, char *token); +#endif static char **readfile(char *path); static void writefile(char *path, char **lines); static int mkdir_p(char *path, mode_t omode); @@ -311,6 +314,34 @@ replace_token(char **lines, char *token, char *replacement) } /* + * make a copy of lines without any that contain the token + * a sort of poor man's grep -v + * + */ +#ifdef WIN32 +static char ** +filter_lines_with_token(char **lines, char *token) +{ + int numlines = 1; + int i, src, dst; + char **result; + + for (i = 0; lines[i]; i++) + numlines++; + + result = (char **) xmalloc(numlines * sizeof(char *)); + + for (src = 0, dst = 0; src < numlines; src++) + { + if (lines[src] == NULL || strstr(lines[src], token) == NULL) + result[dst++] = lines[src]; + } + + return result; +} +#endif + +/* * get the lines from a text file */ static char ** @@ -1093,6 +1124,12 @@ setup_config(void) conflines = readfile(hba_file); +#ifdef WIN32 + conflines = filter_lines_with_token(conflines,"@remove-line-for-win32@"); +#else + conflines = replace_token(conflines,"@remove-line-for-win32@",""); +#endif + #ifndef HAVE_IPV6 conflines = replace_token(conflines, "host all all ::1", |
