diff options
Diffstat (limited to 'auth')
-rw-r--r-- | auth/auth_sam_reply.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/auth/auth_sam_reply.c b/auth/auth_sam_reply.c index 54797ef501..5cd4530eff 100644 --- a/auth/auth_sam_reply.c +++ b/auth/auth_sam_reply.c @@ -102,6 +102,9 @@ NTSTATUS auth_convert_user_info_dc_sambaseinfo(TALLOC_CTX *mem_ctx, } sam->user_flags = 0; /* w2k3 uses NETLOGON_EXTRA_SIDS | NETLOGON_NTLMV2_ENABLED */ + if (!user_info_dc->info->authenticated) { + sam->user_flags |= NETLOGON_GUEST; + } sam->acct_flags = user_info_dc->info->acct_flags; sam->logon_server.string = user_info_dc->info->logon_server; sam->domain.string = user_info_dc->info->domain_name; |