diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-09-03 15:30:17 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-09-03 15:30:17 +1000 |
commit | a35263e1ab81cac7855158012157769e3e9000f7 (patch) | |
tree | e0130c48ed4b58f0544d875d094272e5a58d2e3a /source4/auth | |
parent | baf0b360812dc8532f9420e224bf3ee3a51fb04a (diff) | |
download | samba-a35263e1ab81cac7855158012157769e3e9000f7.tar.gz samba-a35263e1ab81cac7855158012157769e3e9000f7.tar.xz samba-a35263e1ab81cac7855158012157769e3e9000f7.zip |
Implement NETLOGON PAC verfication on the server-side
This is implemented by means of a message to the KDC, to avoid having
to link most of the KDC into netlogon.
Andrew Bartlett
(This used to be commit 82fcd7941f5c54da2d994c8bd99dd8d86299a296)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/kerberos/kerberos_pac.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/auth/kerberos/kerberos_pac.c b/source4/auth/kerberos/kerberos_pac.c index 9ebace32cb5..2943e05b18e 100644 --- a/source4/auth/kerberos/kerberos_pac.c +++ b/source4/auth/kerberos/kerberos_pac.c @@ -32,11 +32,11 @@ #include "auth/auth_sam_reply.h" #include "param/param.h" -static krb5_error_code check_pac_checksum(TALLOC_CTX *mem_ctx, - DATA_BLOB pac_data, - struct PAC_SIGNATURE_DATA *sig, - krb5_context context, - const krb5_keyblock *keyblock) +krb5_error_code check_pac_checksum(TALLOC_CTX *mem_ctx, + DATA_BLOB pac_data, + struct PAC_SIGNATURE_DATA *sig, + krb5_context context, + const krb5_keyblock *keyblock) { krb5_error_code ret; krb5_crypto crypto; |