mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4:kdc: Add client claims blob if it is present
Until we support claims we just return an empty blob, that matches what Windows is doing without defined claims. Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Mon Mar 20 01:25:07 UTC 2023 on atb-devel-224
This commit is contained in:
parent
2e8e93fdd1
commit
3e2eb1b023
@ -1989,6 +1989,14 @@ krb5_error_code samba_kdc_update_pac(TALLOC_CTX *mem_ctx,
|
||||
goto done;
|
||||
}
|
||||
|
||||
code = pac_blobs_add_blob(&pac_blobs,
|
||||
mem_ctx,
|
||||
PAC_TYPE_CLIENT_CLAIMS_INFO,
|
||||
client_claims_blob);
|
||||
if (code != 0) {
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (!is_trusted || !is_tgs) {
|
||||
code = pac_blobs_remove_blob(&pac_blobs,
|
||||
mem_ctx,
|
||||
|
Loading…
Reference in New Issue
Block a user