diff options
author | Tim Potter <tpot@samba.org> | 2003-04-14 05:16:14 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-14 05:16:14 +0000 |
commit | 4e56dea50c5b99655b58288e8fc570a00b7d1b2d (patch) | |
tree | a7dda9453223ef0632582d855b2e9a5fd4a18968 /source3/libads/kerberos_verify.c | |
parent | 4eeac8dbb36ff2d19e52ec3c90f4c720213c8b64 (diff) | |
download | samba-4e56dea50c5b99655b58288e8fc570a00b7d1b2d.tar.gz samba-4e56dea50c5b99655b58288e8fc570a00b7d1b2d.tar.bz2 samba-4e56dea50c5b99655b58288e8fc570a00b7d1b2d.zip |
decode_pac_data() needs a talloc ctx as an argument.
(This used to be commit eeeae14fed62ad9d15f2c5a8fa9357da4bb7b3a1)
Diffstat (limited to 'source3/libads/kerberos_verify.c')
-rw-r--r-- | source3/libads/kerberos_verify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/kerberos_verify.c b/source3/libads/kerberos_verify.c index 56ec33b0a6..6a50137400 100644 --- a/source3/libads/kerberos_verify.c +++ b/source3/libads/kerberos_verify.c @@ -150,7 +150,7 @@ NTSTATUS ads_verify_ticket(ADS_STRUCT *ads, const DATA_BLOB *ticket, { TALLOC_CTX *ctx = talloc_init("pac data"); - decode_pac_data(auth_data); + decode_pac_data(auth_data, ctx); talloc_destroy(ctx); } |