diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-11 18:07:41 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-01-12 18:02:54 +1100 |
commit | b69c40ffce7d1ab8828ec6a1df1d46f7e8c51278 (patch) | |
tree | f81c54995e2c3eeb97ab9af08e268c2e9a19c3f6 /libcli/auth | |
parent | 49f8113fabd2603b45439404c91d350b4d6eaeac (diff) | |
download | samba-b69c40ffce7d1ab8828ec6a1df1d46f7e8c51278.tar.gz samba-b69c40ffce7d1ab8828ec6a1df1d46f7e8c51278.tar.bz2 samba-b69c40ffce7d1ab8828ec6a1df1d46f7e8c51278.zip |
auth/kerberos: Remove unused TALLOC_CTX argument to check_pac_checksum
Diffstat (limited to 'libcli/auth')
-rw-r--r-- | libcli/auth/krb5_wrap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcli/auth/krb5_wrap.h b/libcli/auth/krb5_wrap.h index affb892b57..814c427a56 100644 --- a/libcli/auth/krb5_wrap.h +++ b/libcli/auth/krb5_wrap.h @@ -58,8 +58,7 @@ char *gssapi_error_string(TALLOC_CTX *mem_ctx, const gss_OID mech); char *smb_get_krb5_error_message(krb5_context context, krb5_error_code code, TALLOC_CTX *mem_ctx); -krb5_error_code check_pac_checksum(TALLOC_CTX *mem_ctx, - DATA_BLOB pac_data, +krb5_error_code check_pac_checksum(DATA_BLOB pac_data, struct PAC_SIGNATURE_DATA *sig, krb5_context context, const krb5_keyblock *keyblock); |