diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-09-30 02:45:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-09-30 02:45:17 +0000 |
commit | 2993f0c100ea26932d560eec95370b0b23e1b696 (patch) | |
tree | 1f011b78a39ac997777e116d5e2a4ceacb7b1f99 | |
parent | 1764d9579e13c4f757ae44bbc1cc3e4a1b68b9fa (diff) | |
download | postgresql-2993f0c100ea26932d560eec95370b0b23e1b696.tar.gz postgresql-2993f0c100ea26932d560eec95370b0b23e1b696.zip |
Reverse out getopt patch --- turns out it doesn't help on my
platform, and there are at least some people it's not broken for. So undo
change until we can discuss a more portable solution.
-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 1215408a55a..78d8bc5e30b 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.119 1999/09/30 02:17:23 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.120 1999/09/30 02:45:17 tgl Exp $ * * NOTES * @@ -404,7 +404,7 @@ PostmasterMain(int argc, char *argv[]) DataDir = getenv("PGDATA"); /* default value */ opterr = 0; - while ((opt = getopt(nonblank_argc, argv, "A:a:B:b:D:di:m:MN:no:p:Ss")) != EOF) + while ((opt = getopt(nonblank_argc, argv, "A:a:B:b:D:di::m:MN:no:p:Ss")) != EOF) { switch (opt) { |