diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-04 00:58:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-01-04 00:58:01 +0000 |
commit | 4fe7a6b51e08ae861d5b5508da695e007ad7a1b4 (patch) | |
tree | b0978cce292331319beb53461a832d00e9f199c1 /src/backend/main/main.c | |
parent | f532a22a8f36ee61f7de601d8d6eda1c73cf3ed8 (diff) | |
download | postgresql-4fe7a6b51e08ae861d5b5508da695e007ad7a1b4.tar.gz postgresql-4fe7a6b51e08ae861d5b5508da695e007ad7a1b4.zip |
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..d4188e91be8 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.105.2.1 2007/01/04 00:58:01 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) { |