diff options
author | dtucker <dtucker> | 2005-07-07 10:33:36 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2005-07-07 10:33:36 +0000 |
commit | de8d650f43f1c33125820e017419bb980ffd1c24 (patch) | |
tree | 965b341132250211aed89e2ace09da10a8b402ca /auth-krb5.c | |
parent | 90a2f64df1ebb5e16914c44b44cd4058e6ab5906 (diff) | |
download | openssh-de8d650f43f1c33125820e017419bb980ffd1c24.tar.gz |
- (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.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/auth-krb5.c b/auth-krb5.c index 6ae4f5fc..c7367b49 100644 --- a/auth-krb5.c +++ b/auth-krb5.c @@ -54,9 +54,6 @@ krb5_init(void *context) problem = krb5_init_context(&authctxt->krb5_ctx); if (problem) return (problem); -#ifdef KRB5_INIT_ETS - krb5_init_ets(authctxt->krb5_ctx); -#endif } return (0); } |