From 4e8c37cad581371c9f94c17d4b9272c6f564796c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 4 Jan 2007 11:10:58 +0000 Subject: [PATCH] Add client_access. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19675 ec53bebd-3082-4978-b11e-865c3cabbd6b --- tests/plugin/windc.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/tests/plugin/windc.c b/tests/plugin/windc.c index 8e99875a3..e9e456b13 100644 --- a/tests/plugin/windc.c +++ b/tests/plugin/windc.c @@ -56,12 +56,19 @@ pac_verify(void *ctx, krb5_context context, return 0; } - +static krb5_error_code +client_access(void *ctx, krb5_context context, + struct hdb_entry_ex *client, KDC_REQ *req) +{ + krb5_warnx(context, "client_access"); + return 0; +} krb5plugin_windc_ftable windc = { KRB5_WINDC_PLUGING_MINOR, windc_init, windc_fini, pac_generate, - pac_verify + pac_verify, + client_access };