summaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_backup.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-11-13 23:37:54 +0000
committerBruce Momjian <bruce@momjian.us>2000-11-13 23:37:54 +0000
commitebd61ac03ff50ab69cdb8fc6330f5dca4551ce92 (patch)
tree0840f28d018043c4ac4b43572f6c511fb480e076 /src/bin/pg_dump/pg_backup.h
parentd63a762f799b08c28190ad3ae5ab4061aa83e762 (diff)
downloadpostgresql-ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92.tar.gz
Remove -k unix socketpath option from client side, allow hostname with
leading slash to behave as a unix socket path.
Diffstat (limited to 'src/bin/pg_dump/pg_backup.h')
-rw-r--r--src/bin/pg_dump/pg_backup.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_backup.h b/src/bin/pg_dump/pg_backup.h
index ffe071a665..8fceb26c8e 100644
--- a/src/bin/pg_dump/pg_backup.h
+++ b/src/bin/pg_dump/pg_backup.h
@@ -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);