Add _kdc_windc_client_access.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19674 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-04 11:10:06 +00:00
parent 1901f0475a
commit f2b0c0407f

View File

@@ -94,3 +94,13 @@ _kdc_pac_verify(krb5_context context,
}
return (windcft->pac_verify)(windcctx, context, client, pac);
}
krb5_error_code
_kdc_windc_client_access(krb5_context context,
struct hdb_entry_ex *client,
KDC_REQ *req)
{
if (windcft == NULL)
return 0;
return (windcft->client_access)(windcctx, context, client, req);
}