1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

s4:kdc: Rename ‘user_info_dc’ parameter of samba_kdc_get_user_info_from_db() to ‘info_out’

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-10-03 15:05:08 +13:00 committed by Andrew Bartlett
parent a7323d704e
commit f03b14f8b8
2 changed files with 3 additions and 3 deletions

View File

@ -915,7 +915,7 @@ static bool samba_kdc_entry_pac_issued_by_trust(const struct samba_kdc_entry_pac
*/
NTSTATUS samba_kdc_get_user_info_from_db(struct samba_kdc_entry *entry,
const struct ldb_message *msg,
const struct auth_user_info_dc **user_info_dc)
const struct auth_user_info_dc **info_out)
{
if (entry->user_info_dc == NULL) {
NTSTATUS nt_status;
@ -936,7 +936,7 @@ NTSTATUS samba_kdc_get_user_info_from_db(struct samba_kdc_entry *entry,
}
}
*user_info_dc = entry->user_info_dc;
*info_out = entry->user_info_dc;
return NT_STATUS_OK;
}

View File

@ -109,7 +109,7 @@ krb5_error_code samba_krbtgt_is_in_db(const struct samba_kdc_entry *skdc_entry,
NTSTATUS samba_kdc_get_user_info_from_db(struct samba_kdc_entry *entry,
const struct ldb_message *msg,
const struct auth_user_info_dc **user_info_dc);
const struct auth_user_info_dc **info_out);
NTSTATUS samba_kdc_get_user_info_dc(TALLOC_CTX *mem_ctx,
struct samba_kdc_entry *skdc_entry,