krb5_context
* import_sec_context.c: krb5_gss_ser_init() contains a function
pointer table. this table must use pointers to functions of
type KRB5_CALLCONV.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16244
dc483132-0cff-0310-8789-
dd5450dbe970
+2004-04-13 Jeffrey Altman <jaltman@mit.edu>
+
+ * k5unseal.c: gss_krb5int_unseal_token_v3() takes a pointer to
+ krb5_context
+ * import_sec_context.c: krb5_gss_ser_init() contains a function
+ pointer table. this table must use pointers to functions of
+ type KRB5_CALLCONV.
+
2004-03-20 Ken Raeburn <raeburn@mit.edu>
* rel_cred.c (krb5_gss_release_cred): Create and destroy a local
krb5_gss_ser_init (krb5_context context)
{
krb5_error_code code;
- static krb5_error_code (*const fns[])(krb5_context) = {
+ static krb5_error_code (KRB5_CALLCONV *const fns[])(krb5_context) = {
krb5_ser_context_init, krb5_ser_auth_context_init,
krb5_ser_ccache_init, krb5_ser_rcache_init, krb5_ser_keytab_init,
};
message_buffer, conf_state, qop_state,
toktype);
else
- return gss_krb5int_unseal_token_v3(ctx->k5_context, minor_status, ctx,
+ return gss_krb5int_unseal_token_v3(&ctx->k5_context, minor_status, ctx,
ptr, bodysize, message_buffer,
conf_state, qop_state, toktype);
}