From: Joseph Sutton Date: Tue, 10 Oct 2023 02:22:28 +0000 (+1300) Subject: s4:kdc: Rename ‘user_info_dc’ to ‘client_info’ X-Git-Tag: tevent-0.16.0~84 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51d516cc2f8ab3357b3aa625d6fd4d9420ff2976;p=thirdparty%2Fsamba.git s4:kdc: Rename ‘user_info_dc’ to ‘client_info’ Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/kdc/hdb-samba4.c b/source4/kdc/hdb-samba4.c index 8dd44383852..eea4fd90b8e 100644 --- a/source4/kdc/hdb-samba4.c +++ b/source4/kdc/hdb-samba4.c @@ -332,7 +332,7 @@ hdb_samba4_check_rbcd(krb5_context context, HDB *db, struct samba_kdc_entry *client_skdc_entry = NULL; const struct samba_kdc_entry *client_krbtgt_skdc_entry = NULL; struct samba_kdc_entry *proxy_skdc_entry = NULL; - const struct auth_user_info_dc *user_info_dc = NULL; + const struct auth_user_info_dc *client_info = NULL; struct samba_kdc_entry_pac client_pac_entry = {}; TALLOC_CTX *mem_ctx = NULL; krb5_error_code code; @@ -359,7 +359,7 @@ hdb_samba4_check_rbcd(krb5_context context, HDB *db, context, kdc_db_ctx->samdb, client_pac_entry, - &user_info_dc, + &client_info, NULL /* resource_groups_out */); if (code != 0) { goto out; @@ -369,7 +369,7 @@ hdb_samba4_check_rbcd(krb5_context context, HDB *db, kdc_db_ctx, client->principal, server_principal, - user_info_dc, + client_info, proxy_skdc_entry); out: talloc_free(mem_ctx);