From 697505a92dd61a9c49cfb78ac62878c6ef7c0f86 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 14 Jul 1997 11:47:00 +0000 Subject: [PATCH] removed unimplemented functions git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2285 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/auth_context.c | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/lib/krb5/auth_context.c b/lib/krb5/auth_context.c index d5136b1b6..7b8d0388e 100644 --- a/lib/krb5/auth_context.c +++ b/lib/krb5/auth_context.c @@ -114,15 +114,6 @@ krb5_auth_con_getaddrs(krb5_context context, return 0; } -krb5_error_code -krb5_auth_con_setuserkey(krb5_context context, - krb5_auth_context auth_context, - krb5_keyblock *keyblock) -{ - abort (); -} - - krb5_error_code krb5_auth_con_getkey(krb5_context context, krb5_auth_context auth_context, @@ -256,27 +247,38 @@ krb5_free_authenticator(krb5_context context, } +#if 0 /* not implemented */ + krb5_error_code -krb5_auth_initvector(krb5_context context, - krb5_auth_context auth_context) +krb5_auth_con_initivector(krb5_context context, + krb5_auth_context auth_context) { abort (); } krb5_error_code -krb5_set_initvector(krb5_context context, - krb5_auth_context auth_context, - krb5_pointer ivector) +krb5_auth_con_setivector(krb5_context context, + krb5_auth_context auth_context, + krb5_pointer ivector) { abort (); } krb5_error_code -krb5_set_rcache(krb5_context context, - krb5_auth_context auth_context, - krb5_rcache rcache) +krb5_auth_con_setrcache(krb5_context context, + krb5_auth_context auth_context, + krb5_rcache rcache) { abort (); } + +krb5_error_code +krb5_auth_con_setuserkey(krb5_context context, + krb5_auth_context auth_context, + krb5_keyblock *keyblock) +{ + abort (); +} +#endif /* not implemented */