1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Remove PQunixsocket, per Peter's recommendation. PQhost shows the socket directory.

This commit is contained in:
Bruce Momjian
2000-11-28 06:53:33 +00:00
parent 811749bb6e
commit 5173fc411f
2 changed files with 2 additions and 20 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.149 2000/11/27 21:12:25 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.150 2000/11/28 06:53:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -2627,14 +2627,6 @@ PQport(const PGconn *conn)
return conn->pgport;
}
char *
PQunixsocket(const PGconn *conn)
{
if (!conn)
return (char *) NULL;
return conn->pgunixsocket;
}
char *
PQtty(const PGconn *conn)
{