diff options
author | Magnus Hagander | 2014-03-16 14:18:52 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-03-16 14:22:45 +0000 |
commit | 0294023a6b1c5df7683707a77238ab634d4ea8c1 (patch) | |
tree | fc0f99b36e9577c1ba7aa873246d46b4a58a1b47 /src/include/libpq/auth.h | |
parent | e3c9f23250fc445568b2aefab8bcdc25371cff5b (diff) |
Cleanups from the remove-native-krb5 patch
krb_srvname is actually not available anymore as a parameter server-side, since
with gssapi we accept all principals in our keytab. It's still used in libpq for
client side specification.
In passing remove declaration of krb_server_hostname, where all the functionality
was already removed.
Noted by Stephen Frost, though a different solution than his suggestion
Diffstat (limited to 'src/include/libpq/auth.h')
-rw-r--r-- | src/include/libpq/auth.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/libpq/auth.h b/src/include/libpq/auth.h index 5ae8114e8b9..ace647a7ff1 100644 --- a/src/include/libpq/auth.h +++ b/src/include/libpq/auth.h @@ -17,9 +17,7 @@ #include "libpq/libpq-be.h" extern char *pg_krb_server_keyfile; -extern char *pg_krb_srvnam; extern bool pg_krb_caseins_users; -extern char *pg_krb_server_hostname; extern char *pg_krb_realm; extern void ClientAuthentication(Port *port); |