From b8068e01999b2c1b5a13baea458f60f999cc6564 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 7 Jan 2016 15:13:09 +0100 Subject: auth/wbc_auth_util: fill in base.logon_domain in wbcAuthUserInfo_to_netr_SamInfo3() Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- auth/wbc_auth_util.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'auth/wbc_auth_util.c') diff --git a/auth/wbc_auth_util.c b/auth/wbc_auth_util.c index 1c50b183f23..bce28175504 100644 --- a/auth/wbc_auth_util.c +++ b/auth/wbc_auth_util.c @@ -145,6 +145,11 @@ struct netr_SamInfo3 *wbcAuthUserInfo_to_netr_SamInfo3(TALLOC_CTX *mem_ctx, talloc_strdup(info3, info->full_name); RET_NOMEM(info3->base.full_name.string); } + if (info->domain_name) { + info3->base.logon_domain.string = + talloc_strdup(info3, info->domain_name); + RET_NOMEM(info3->base.logon_domain.string); + } if (info->logon_script) { info3->base.logon_script.string = talloc_strdup(info3, info->logon_script); -- cgit v1.2.1