1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Remove -k unix socketpath option from client side, allow hostname with

leading slash to behave as a unix socket path.
This commit is contained in:
Bruce Momjian
2000-11-13 23:37:54 +00:00
parent d63a762f79
commit ebd61ac03f
32 changed files with 82 additions and 304 deletions

View File

@ -99,9 +99,8 @@ typedef struct _restoreOptions {
int useDB;
char *dbname;
char *pghost;
char *pgport;
char *pgunixsocket;
char *pghost;
int ignoreVersion;
int requirePassword;
@ -123,7 +122,6 @@ PGconn* ConnectDatabase(Archive *AH,
const char* dbname,
const char* pghost,
const char* pgport,
const char* pgunixsocket,
const int reqPwd,
const int ignoreVersion);