1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r4417: Reply to samr_QueryDomainInfo with the same static value as level2 does.

Volker
(This used to be commit 04cf580ef3)
This commit is contained in:
Volker Lendecke 2004-12-30 19:11:25 +00:00 committed by Gerald (Jerry) Carter
parent 6f2e88a09c
commit 6372b4e4a4

View File

@ -409,6 +409,19 @@ static NTSTATUS samr_info_DomInfo2(struct samr_domain_state *state, TALLOC_CTX *
return NT_STATUS_OK;
}
/*
return DomInfo3
*/
static NTSTATUS samr_info_DomInfo3(struct samr_domain_state *state,
TALLOC_CTX *mem_ctx,
struct samr_DomInfo3 *info)
{
/* where is this supposed to come from? is it settable? */
info->force_logoff_time = 0x8000000000000000LL;
return NT_STATUS_OK;
}
/*
samr_QueryDomainInfo
*/
@ -437,6 +450,9 @@ static NTSTATUS samr_QueryDomainInfo(struct dcesrv_call_state *dce_call, TALLOC_
&r->out.info->info1);
case 2:
return samr_info_DomInfo2(d_state, mem_ctx, &r->out.info->info2);
case 3:
return samr_info_DomInfo3(d_state, mem_ctx,
&r->out.info->info3);
}
return NT_STATUS_INVALID_INFO_CLASS;