summaryrefslogtreecommitdiff
path: root/auth-krb5.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-07-07 20:33:36 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-07-07 20:33:36 +1000
commit893c602ef05e2a11d76a945ac19c75bcc029c515 (patch)
tree32b8caeaa99d0b7dc75c4169e91ef63b2c0ca91e /auth-krb5.c
parenta83f2612c275aea3168cadd94433590aa15a8ad3 (diff)
- (dtucker) [acconfig.h auth-krb5.c configure.ac gss-serv-krb5.c] Remove
calls to krb5_init_ets, which has not been required since krb-1.1.x and most Kerberos versions no longer export in their public API. From sxw at inf.ed.ac.uk, ok djm@
Diffstat (limited to 'auth-krb5.c')
-rw-r--r--auth-krb5.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/auth-krb5.c b/auth-krb5.c
index 6ae4f5fc4..c7367b49a 100644
--- a/auth-krb5.c
+++ b/auth-krb5.c
@@ -54,9 +54,6 @@ krb5_init(void *context)
54 problem = krb5_init_context(&authctxt->krb5_ctx); 54 problem = krb5_init_context(&authctxt->krb5_ctx);
55 if (problem) 55 if (problem)
56 return (problem); 56 return (problem);
57#ifdef KRB5_INIT_ETS
58 krb5_init_ets(authctxt->krb5_ctx);
59#endif
60 } 57 }
61 return (0); 58 return (0);
62} 59}