diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-04 00:57:51 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-04 00:57:51 +0000 |
commit | eeb2189112fc2136bf697f2b7d20e436acc8880b (patch) | |
tree | 9405f9d876530cf5b457f1de0695d7ad63e56511 /src/backend/main/main.c | |
parent | d6061d2f31187795790e7e63d5d9730f9d78e7ea (diff) |
Fix erroneous implementation of -s in postmaster.c (the switch doesn't take
an optarg). Add some comments noting that code in three different files has
to be kept in sync. Fix erroneous description of -S switch (it sets work_mem
not silent_mode), and do some light copy-editing elsewhere in postgres-ref.
Diffstat (limited to 'src/backend/main/main.c')
-rw-r--r-- | src/backend/main/main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c index a750cfe9fd9..28ae9ee98db 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -13,7 +13,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/main/main.c,v 1.105 2006/10/04 00:29:53 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/main/main.c,v 1.106 2007/01/04 00:57:51 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -258,7 +258,10 @@ startup_hacks(const char *progname) } - +/* + * Help display should match the options accepted by PostmasterMain() + * and PostgresMain(). + */ static void help(const char *progname) { |