1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-22 14:32:25 +03:00

Oops, back out my unintended changes.

This commit is contained in:
Bruce Momjian
2000-10-11 17:58:01 +00:00
parent 5e38665f8a
commit 3d45543698
2 changed files with 3 additions and 24 deletions

View File

@@ -4,7 +4,7 @@
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.13 2000/10/11 17:55:32 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.14 2000/10/11 17:58:01 momjian Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -237,8 +237,6 @@ ConfigureNamesInt[] =
DEF_NBUFFERS, 16, INT_MAX},
{"port", PGC_POSTMASTER, &PostPortName,
DEF_PGPORT, 1, 65535},
{"unixsocket", PGC_POSTMASTER, &UnixSocketName,
DEF_PGSOCKETFILE, 1, 65535},
{"sort_mem", PGC_USERSET, &SortMem,
512, 1, INT_MAX},
@@ -374,10 +372,7 @@ ResetAllOptions(void)
}
if (getenv("PGPORT"))
PostPortNumber = atoi(getenv("PGPORT"));
if (UnixSocketName == NULL)
UnixSocketName = getenv("PGUNIXSOCKET");
PostPortName = atoi(getenv("PGPORT"));
}