Deleted Added
full compact
2c2
< * Copyright (c) 1997 - 2001 Kungliga Tekniska H�gskolan
---
> * Copyright (c) 1997 - 2002 Kungliga Tekniska H�gskolan
36c36
< RCSID("$Id: auth_context.c,v 1.58 2002/08/15 08:23:07 joda Exp $");
---
> RCSID("$Id: auth_context.c,v 1.59 2002/09/02 17:11:02 joda Exp $");
294a295,312
> krb5_auth_con_generatelocalsubkey(krb5_context context,
> krb5_auth_context auth_context,
> krb5_keyblock *key)
> {
> krb5_error_code ret;
> krb5_keyblock *subkey;
>
> ret = krb5_generate_subkey (context, key, &subkey);
> if(ret)
> return ret;
> if(auth_context->local_subkey)
> krb5_free_keyblock(context, auth_context->local_subkey);
> auth_context->local_subkey = subkey;
> return 0;
> }
>
>
> krb5_error_code