mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
s4:kdc: Remove ‘compounded_auth’ parameter from samba_kdc_get_user_info_dc()
It was never used. Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
41527cfaf9
commit
e0a3dd5499
@ -488,7 +488,6 @@ krb5_error_code mit_samba_get_pac(struct mit_samba_context *smb_ctx,
|
||||
skdc_entry,
|
||||
asserted_identity,
|
||||
SAMBA_CLAIMS_VALID_INCLUDE,
|
||||
SAMBA_COMPOUNDED_AUTH_EXCLUDE,
|
||||
&user_info_dc);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
talloc_free(tmp_ctx);
|
||||
|
@ -1100,7 +1100,6 @@ NTSTATUS samba_kdc_get_user_info_dc(TALLOC_CTX *mem_ctx,
|
||||
struct samba_kdc_entry *skdc_entry,
|
||||
enum samba_asserted_identity asserted_identity,
|
||||
enum samba_claims_valid claims_valid,
|
||||
enum samba_compounded_auth compounded_auth,
|
||||
struct auth_user_info_dc **user_info_dc_out)
|
||||
{
|
||||
NTSTATUS nt_status;
|
||||
@ -1139,14 +1138,6 @@ NTSTATUS samba_kdc_get_user_info_dc(TALLOC_CTX *mem_ctx,
|
||||
return nt_status;
|
||||
}
|
||||
|
||||
nt_status = samba_kdc_add_compounded_auth(compounded_auth,
|
||||
user_info_dc);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
DBG_ERR("Failed to add Compounded Authentication: %s\n",
|
||||
nt_errstr(nt_status));
|
||||
return nt_status;
|
||||
}
|
||||
|
||||
*user_info_dc_out = user_info_dc;
|
||||
|
||||
return NT_STATUS_OK;
|
||||
@ -1235,7 +1226,6 @@ static krb5_error_code samba_kdc_obtain_user_info_dc(TALLOC_CTX *mem_ctx,
|
||||
skdc_entry,
|
||||
SAMBA_ASSERTED_IDENTITY_AUTHENTICATION_AUTHORITY,
|
||||
SAMBA_CLAIMS_VALID_EXCLUDE,
|
||||
SAMBA_COMPOUNDED_AUTH_EXCLUDE,
|
||||
&user_info_dc);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
DBG_ERR("samba_kdc_get_user_info_dc failed: %s\n",
|
||||
@ -2038,7 +2028,6 @@ static krb5_error_code samba_kdc_get_device_info_blob(TALLOC_CTX *mem_ctx,
|
||||
device,
|
||||
SAMBA_ASSERTED_IDENTITY_AUTHENTICATION_AUTHORITY,
|
||||
SAMBA_CLAIMS_VALID_INCLUDE,
|
||||
SAMBA_COMPOUNDED_AUTH_EXCLUDE,
|
||||
&device_info_dc);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
DBG_ERR("samba_kdc_get_user_info_dc failed: %s\n",
|
||||
@ -2939,7 +2928,6 @@ krb5_error_code samba_kdc_check_device(TALLOC_CTX *mem_ctx,
|
||||
device,
|
||||
SAMBA_ASSERTED_IDENTITY_AUTHENTICATION_AUTHORITY,
|
||||
SAMBA_CLAIMS_VALID_INCLUDE,
|
||||
SAMBA_COMPOUNDED_AUTH_EXCLUDE,
|
||||
&device_info);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
DBG_ERR("samba_kdc_get_user_info_dc failed: %s\n",
|
||||
|
@ -88,7 +88,6 @@ NTSTATUS samba_kdc_get_user_info_dc(TALLOC_CTX *mem_ctx,
|
||||
struct samba_kdc_entry *skdc_entry,
|
||||
enum samba_asserted_identity asserted_identity,
|
||||
enum samba_claims_valid claims_valid,
|
||||
enum samba_compounded_auth compounded_auth,
|
||||
struct auth_user_info_dc **user_info_dc_out);
|
||||
|
||||
krb5_error_code samba_kdc_map_policy_err(NTSTATUS nt_status);
|
||||
|
@ -127,7 +127,6 @@ static krb5_error_code samba_wdc_get_pac(void *priv,
|
||||
skdc_entry,
|
||||
asserted_identity,
|
||||
SAMBA_CLAIMS_VALID_INCLUDE,
|
||||
SAMBA_COMPOUNDED_AUTH_EXCLUDE,
|
||||
&user_info_dc);
|
||||
if (!NT_STATUS_IS_OK(nt_status)) {
|
||||
talloc_free(mem_ctx);
|
||||
|
Loading…
x
Reference in New Issue
Block a user