1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +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

@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.170 2000/10/11 17:55:32 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.171 2000/10/11 17:58:01 momjian Exp $
*
* NOTES
*
@@ -543,22 +543,6 @@ PostmasterMain(int argc, char *argv[])
exit(1);
}
/*
* Select default values for switches where needed
*/
if (HostName == NULL)
{
if (!(HostName = getenv("PGHOST")))
{
HostName = "any";
}
}
else if (!NetServer)
{
fprintf(stderr, "%s: -h requires -i.\n", progname);
exit(1);
}
/*
* Check for invalid combinations of switches
*/