diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-09-28 13:13:28 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-29 04:23:07 +1000 |
commit | 89ee9e6518f5bd398bb44e0cd47454e2d69f469e (patch) | |
tree | 97c294dd0fd053b4ec9078fcd84e6bbf83efcaf6 /source4/kdc/mit_samba.c | |
parent | 9d33929d76d0969917c1d42e1097d75af3401008 (diff) | |
download | samba-89ee9e6518f5bd398bb44e0cd47454e2d69f469e.tar.gz |
s4-kdc Handle the case where we may be given a ticket from an RODC in db layer
This includes rewriting the PAC if the original krbtgt isn't to be
trusted, and reading different entries from the DB for the krbtgt
depending on the krbtgt number.
Andrew Bartlett
Diffstat (limited to 'source4/kdc/mit_samba.c')
-rw-r--r-- | source4/kdc/mit_samba.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/kdc/mit_samba.c b/source4/kdc/mit_samba.c index 217f0983ae..14ad7be414 100644 --- a/source4/kdc/mit_samba.c +++ b/source4/kdc/mit_samba.c @@ -130,7 +130,7 @@ static int mit_samba_get_principal(struct mit_samba_context *ctx, } ret = samba_kdc_fetch(ctx->context, ctx->db_ctx, - principal, flags, hentry); + principal, flags, 0, hentry); krb5_free_principal(ctx->context, principal); |