Skip to content

Commit 2993f0c

Browse files
committed
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.
1 parent 1764d95 commit 2993f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.119 1999/09/30 02:17:23 tgl Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.120 1999/09/30 02:45:17 tgl Exp $
1414
*
1515
* NOTES
1616
*
@@ -404,7 +404,7 @@ PostmasterMain(int argc, char *argv[])
404404
DataDir = getenv("PGDATA"); /* default value */
405405

406406
opterr = 0;
407-
while ((opt = getopt(nonblank_argc, argv, "A:a:B:b:D:di:m:MN:no:p:Ss")) != EOF)
407+
while ((opt = getopt(nonblank_argc, argv, "A:a:B:b:D:di::m:MN:no:p:Ss")) != EOF)
408408
{
409409
switch (opt)
410410
{

0 commit comments

Comments
 (0)