1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s4-samr: merge samr_GetBootKeyInformation from s3 idl. (fixme: python)

Guenther
This commit is contained in:
Günther Deschner 2008-11-05 01:39:39 +01:00
parent 8f1559c350
commit 88ff1be036
2 changed files with 3 additions and 1 deletions

View File

@ -1350,7 +1350,7 @@ import "misc.idl", "lsa.idl", "security.idl";
/* Function 0x3c */
NTSTATUS samr_GetBootKeyInformation(
[in,ref] policy_handle *domain_handle,
[out] uint32 unknown
[out,ref] uint32 *unknown
);
/************************/

View File

@ -4202,10 +4202,12 @@ static bool test_GetBootKeyInformation(struct dcerpc_pipe *p, struct torture_con
struct samr_GetBootKeyInformation r;
NTSTATUS status;
bool ret = true;
uint32_t unknown = 0;
torture_comment(tctx, "Testing GetBootKeyInformation\n");
r.in.domain_handle = domain_handle;
r.out.unknown = &unknown;
status = dcerpc_samr_GetBootKeyInformation(p, tctx, &r);
if (!NT_STATUS_IS_OK(status)) {