From 0c9609343d8a6f3178c65cd4457329e2f72c857c Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 31 Jan 2013 13:39:42 +0100 Subject: [PATCH] s3:auth: wbcAuthenticateEx gives unix times (bug #9625) We also need to convert last_logon, last_logoff and acct_expiry from unix time to nt time. Otherwise a windows member server will reject clients using CAP_DYNAMIC_REAUTH or smb2) with STATUS_NETWORK_SESSION_EXPIRED, if the logoff and kickoff time is expired. Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/auth/server_info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/auth/server_info.c b/source3/auth/server_info.c index 2e94e46..90b3ed6 100644 --- a/source3/auth/server_info.c +++ b/source3/auth/server_info.c @@ -608,9 +608,9 @@ struct netr_SamInfo3 *wbcAuthUserInfo_to_netr_SamInfo3(TALLOC_CTX *mem_ctx, info3 = talloc_zero(mem_ctx, struct netr_SamInfo3); if (!info3) return NULL; - info3->base.last_logon = info->logon_time; - info3->base.last_logoff = info->logoff_time; - info3->base.acct_expiry = info->kickoff_time; + unix_to_nt_time(&info3->base.last_logon, info->logon_time); + unix_to_nt_time(&info3->base.last_logoff, info->logoff_time); + unix_to_nt_time(&info3->base.acct_expiry, info->kickoff_time); unix_to_nt_time(&info3->base.last_password_change, info->pass_last_set_time); unix_to_nt_time(&info3->base.allow_password_change, info->pass_can_change_time); -- 1.7.9.5