diff options
author | Rafal Szczesniak <mimir@samba.org> | 2006-11-27 21:56:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:28:36 -0500 |
commit | afce9d1df87544abdeb393e299b11065c365cbfb (patch) | |
tree | 817cb1b0844269597e289b629c5cafd803641843 /source4/torture | |
parent | fdf4a6a97f2d3e432c5a125e0f685a90bdbb3516 (diff) | |
download | samba-afce9d1df87544abdeb393e299b11065c365cbfb.tar.gz samba-afce9d1df87544abdeb393e299b11065c365cbfb.tar.bz2 samba-afce9d1df87544abdeb393e299b11065c365cbfb.zip |
r19923: Update test to match the function changes.
rafal
(This used to be commit e1a20bba9dcc740630c093dcdd1f082e54473e95)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/libnet/libnet_user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/libnet/libnet_user.c b/source4/torture/libnet/libnet_user.c index 046ad3fec4..44aa38073c 100644 --- a/source4/torture/libnet/libnet_user.c +++ b/source4/torture/libnet/libnet_user.c @@ -698,7 +698,7 @@ BOOL torture_userlist(struct torture_context *torture) req.in.domain_name = domain_name.string; req.in.page_size = 30; - req.in.restore_index = 0; + req.in.resume_index = 0; status = libnet_UserList(ctx, mem_ctx, &req); if (!NT_STATUS_IS_OK(status)) { @@ -708,7 +708,7 @@ BOOL torture_userlist(struct torture_context *torture) goto done; } - if (!test_lsa_close(ctx->lsa.pipe, mem_ctx, &ctx->lsa.handle)) { + if (!test_samr_close(ctx->samr.pipe, mem_ctx, &ctx->samr.handle)) { printf("domain close failed\n"); ret = False; } |