diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-05-25 15:37:15 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-05-25 15:37:15 +0000 |
commit | ca746f512dc0ca40d9f33b9019a21c5317a88d02 (patch) | |
tree | 7bb536f13abeeac0ef6cefebaba0a9aa4cdd82c5 /src | |
parent | 098dea8633cfd638ba92d3eb4b2577aca434b074 (diff) | |
download | postgresql-ca746f512dc0ca40d9f33b9019a21c5317a88d02.tar.gz postgresql-ca746f512dc0ca40d9f33b9019a21c5317a88d02.zip |
-m <arg> -M weren't setup properly in getopts()...
These are undocumented in the man pages though...should they be removed?
Reported by: "A. Duursma" <it@portsite.nl>
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index e2a296a379f..412f53cfae0 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.45 1997/04/24 20:27:46 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.46 1997/05/25 15:37:15 scrappy Exp $ * * NOTES * @@ -244,7 +244,7 @@ PostmasterMain(int argc, char *argv[]) DataDir = getenv("PGDATA"); /* default value */ opterr = 0; - while ((opt = getopt(argc, argv, "a:B:b:D:dmM:no:p:Ss")) != EOF) { + while ((opt = getopt(argc, argv, "a:B:b:D:dm:Mno:p:Ss")) != EOF) { switch (opt) { case 'a': /* Set the authentication system. */ |