diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-11-13 23:37:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-11-13 23:37:54 +0000 |
commit | ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92 (patch) | |
tree | 0840f28d018043c4ac4b43572f6c511fb480e076 /src/backend | |
parent | d63a762f799b08c28190ad3ae5ab4061aa83e762 (diff) | |
download | postgresql-ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92.tar.gz postgresql-ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92.zip |
Remove -k unix socketpath option from client side, allow hostname with
leading slash to behave as a unix socket path.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index c6b645b15ba..b9d49730138 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.183 2000/11/13 15:18:11 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.184 2000/11/13 23:37:52 momjian Exp $ * * NOTES * @@ -1334,8 +1334,8 @@ get_host_port(void) { char msg[1024]; snprintf(msg, sizeof(msg), - "FATAL: get_host_port: gethostbyname(%s) failed: %s\n", - HostName, hstrerror(h_errno)); + "FATAL: get_host_port: gethostbyname(%s) failed\n", + HostName); fputs(msg, stderr); pqdebug("%s", msg); exit(1); |