diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-06-06 16:04:32 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-06-06 16:04:32 +0000 |
commit | 4032a515d26eb2772c0f929db1dd8c38fcab3f92 (patch) | |
tree | 612c886d6c07554ea4d6759aa3119ebcf2ce5714 /src/backend | |
parent | beb7f7f72d95755f1cb1667053426fe383bcbf6f (diff) | |
download | postgresql-4032a515d26eb2772c0f929db1dd8c38fcab3f92.tar.gz postgresql-4032a515d26eb2772c0f929db1dd8c38fcab3f92.zip |
PGPORT envar was erroneously ignored by the backend
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/libpq/pqcomm.c | 15 | ||||
-rw-r--r-- | src/backend/postmaster/postmaster.c | 10 |
2 files changed, 6 insertions, 19 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index cc2d0c27548..5238865e760 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -29,7 +29,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.c,v 1.95 2000/06/04 01:44:30 petere Exp $ + * $Id: pqcomm.c,v 1.96 2000/06/06 16:04:29 petere Exp $ * *------------------------------------------------------------------------- */ @@ -118,19 +118,6 @@ pq_init(void) debug_port = stderr; } -/* -------------------------------- - * pq_getport - return the PGPORT setting - * -------------------------------- - */ -int -pq_getport(void) -{ - char *envport = getenv("PGPORT"); - - if (envport) - return atoi(envport); - return DEF_PGPORT; -} /* -------------------------------- * pq_close - shutdown libpq at backend exit diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index b578bc038f7..161b832c320 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.146 2000/06/04 01:44:31 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.147 2000/06/06 16:04:29 petere Exp $ * * NOTES * @@ -129,7 +129,7 @@ static Dllist *BackendList; /* list of ports associated with still open, but incomplete connections */ static Dllist *PortList; -int PostPortName = DEF_PGPORT; +int PostPortName; /* * This is a boolean indicating that there is at least one backend that @@ -381,6 +381,9 @@ PostmasterMain(int argc, char *argv[]) MyProcPid = getpid(); DataDir = getenv("PGDATA"); /* default value */ + if (getenv("PGPORT")) + PostPortName = atoi(getenv("PGPORT")); + /* * First we must scan for a -D argument to get the data dir. Then * read the config file. Finally, scan all the other arguments. @@ -543,9 +546,6 @@ PostmasterMain(int argc, char *argv[]) } } - if (PostPortName == 0) - PostPortName = pq_getport(); - /* * Check for invalid combinations of switches */ |