summaryrefslogtreecommitdiff
path: root/source4/torture/rpc
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-22 10:37:00 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-22 10:37:00 +0000
commit677fb26deba2e8b8965c41d7b7455063db031a2c (patch)
treed445c5d5be9d6365373606d1dada66acc432ecf1 /source4/torture/rpc
parent0b0ca9f75429e16b4ab3114cc38e16d0f9d9fa62 (diff)
downloadsamba-677fb26deba2e8b8965c41d7b7455063db031a2c.tar.gz
samba-677fb26deba2e8b8965c41d7b7455063db031a2c.tar.bz2
samba-677fb26deba2e8b8965c41d7b7455063db031a2c.zip
* fixed handling of relative subcontext unions
* fixed GetPrinter in spoolss after OpenPrinter (This used to be commit 4aea2d79dd6b14e0fdfafd2236849ece01839ce0)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/spoolss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c
index 6c85a78d20..813bcdd6aa 100644
--- a/source4/torture/rpc/spoolss.c
+++ b/source4/torture/rpc/spoolss.c
@@ -139,13 +139,13 @@ static BOOL test_OpenPrinter(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
blob = data_blob(NULL, 0);
- r.in.server = talloc_asprintf(mem_ctx, "\\\\%s", dcerpc_server_name(p));
+ r.in.server = talloc_asprintf(mem_ctx, "\\\\%s\\%s", dcerpc_server_name(p), name);
r.in.printer = NULL;
r.in.buffer = &blob;
r.in.access_mask = SEC_RIGHTS_MAXIMUM_ALLOWED;
r.out.handle = &handle;
- printf("\nTesting OpenPrinter(\\\\%s\\%s)\n", r.in.server, r.in.printer);
+ printf("\nTesting OpenPrinter(\\\\%s)\n", r.in.server);
status = dcerpc_spoolss_OpenPrinter(p, mem_ctx, &r);
if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {