diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-10-31 09:14:46 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-10-31 09:14:46 -0400 |
commit | 6bb9a6177d1274cb40acf5737bf44dc8229ec8ed (patch) | |
tree | b45c9711c2ff82354f6efdba31ba197460aaa22e /src | |
parent | 36d154ecb2286328c7c59b99d5abb71318e056eb (diff) | |
download | postgresql-6bb9a6177d1274cb40acf5737bf44dc8229ec8ed.tar.gz postgresql-6bb9a6177d1274cb40acf5737bf44dc8229ec8ed.zip |
Remove declarations for pq_putmessage_hook and pq_flush_hook.
Commit 2bd9e412f92bc6a68f3e8bcb18e04955cc35001d added these in error.
They were part of an earlier design for that patch and survived in the
committed version only by inadvertency.
Julien Rouhaud
Diffstat (limited to 'src')
-rw-r--r-- | src/include/libpq/libpq.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/libpq/libpq.h b/src/include/libpq/libpq.h index 18052cbfef8..5fac8171ed8 100644 --- a/src/include/libpq/libpq.h +++ b/src/include/libpq/libpq.h @@ -81,9 +81,6 @@ extern char *ssl_key_file; extern char *ssl_ca_file; extern char *ssl_crl_file; -extern int (*pq_putmessage_hook) (char msgtype, const char *s, size_t len); -extern int (*pq_flush_hook) (void); - extern int secure_initialize(void); extern bool secure_loaded_verify_locations(void); extern void secure_destroy(void); |