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

r15787: NET-API-CREATEUSER was crashing for me because of this uninitialized value...

now it still does not work (auth failure ?!) but at least it does not crash
This commit is contained in:
Simo Sorce 2006-05-21 21:25:31 +00:00 committed by Gerald (Jerry) Carter
parent 202ce2a947
commit 43d9bfeb22

View File

@ -219,6 +219,7 @@ BOOL torture_createuser(struct torture_context *torture)
req.in.user_name = TEST_USERNAME;
req.in.domain_name = lp_workgroup();
req.out.error_string = NULL;
status = libnet_CreateUser(ctx, mem_ctx, &req);
if (!NT_STATUS_IS_OK(status)) {