diff options
Diffstat (limited to 'src/bin/initdb/initdb.c')
-rw-r--r-- | src/bin/initdb/initdb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 8aecb08a2c0..367b3083e0d 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -42,7 +42,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * - * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.105 2006/01/05 03:01:36 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.106 2006/01/05 10:07:46 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1686,10 +1686,10 @@ setup_sysviews(void) sysviews_setup = readfile(system_views_file); /* - * We use -N here to avoid backslashing stuff in system_views.sql + * We use -j here to avoid backslashing stuff in system_views.sql */ snprintf(cmd, sizeof(cmd), - "\"%s\" %s -N template1 >%s", + "\"%s\" %s -j template1 >%s", backend_exec, backend_options, DEVNULL); @@ -1870,10 +1870,10 @@ setup_schema(void) lines = readfile(info_schema_file); /* - * We use -N here to avoid backslashing stuff in information_schema.sql + * We use -j here to avoid backslashing stuff in information_schema.sql */ snprintf(cmd, sizeof(cmd), - "\"%s\" %s -N template1 >%s", + "\"%s\" %s -j template1 >%s", backend_exec, backend_options, DEVNULL); |