diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-10-28 08:37:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:04:53 -0500 |
commit | 4a25682214d15ff79ffc31665333873eab84a89c (patch) | |
tree | 27e1e14987fa2aed6a3a5340308cf6d9f14b1f80 /source4/torture | |
parent | c4cff94beb3eb8e78aa4a291ff0d8eea9512c6c0 (diff) | |
download | samba-4a25682214d15ff79ffc31665333873eab84a89c.tar.gz samba-4a25682214d15ff79ffc31665333873eab84a89c.tar.bz2 samba-4a25682214d15ff79ffc31665333873eab84a89c.zip |
r3317: Fix the build
(This used to be commit 5e8fd27d6ec7f44e6e802a2f29ec54e96fa78af0)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/spoolss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index f0748fc7d9..db0f1bc1a9 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -177,7 +177,7 @@ static BOOL test_EnumForms(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, } for (j = 0; j < r.out.count; j++) - test_GetForm(p, mem_ctx, handle, info[j].info1.name); + test_GetForm(p, mem_ctx, handle, info[j].info1.formname); } if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) { @@ -221,7 +221,7 @@ static BOOL test_AddForm(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, r.in.handle = handle; r.in.level = 1; form.flags = 2; /* User form */ - form.name = formname; + form.formname = formname; form.width = 1; form.length = 2; form.left = 3; |