From ca746f512dc0ca40d9f33b9019a21c5317a88d02 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" <scrappy@hub.org> Date: Sun, 25 May 1997 15:37:15 +0000 Subject: [PATCH] -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> --- src/backend/postmaster/postmaster.c | 4 ++-- 1 file 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. */ -- GitLab