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 | |
| 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')
| -rw-r--r-- | src/include/libpq/auth.h | 2 | ||||
| -rw-r--r-- | src/include/libpq/hba.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/include/libpq/auth.h b/src/include/libpq/auth.h index 5ae8114e8b..ace647a7ff 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); diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index 5a103aed19..68a953aa62 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -75,7 +75,6 @@ typedef struct HbaLine char *ldapprefix; char *ldapsuffix; bool clientcert; - char *krb_server_hostname; char *krb_realm; bool include_realm; char *radiusserver; |
