diff options
Diffstat (limited to 'source4')
-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 56a26d31c9..0b5022f7ce 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -2537,14 +2537,14 @@ static bool test_GetJob(struct torture_context *tctx, r.out.needed = &needed; r.out.info = &info; - torture_comment(tctx, "Testing GetJob level %d\n", r.in.level); + torture_comment(tctx, "Testing GetJob(%d), level %d\n", job_id, r.in.level); status = dcerpc_spoolss_GetJob_r(b, tctx, &r); torture_assert_werr_equal(tctx, r.out.result, WERR_UNKNOWN_LEVEL, "Unexpected return code"); for (i = 0; i < ARRAY_SIZE(levels); i++) { - torture_comment(tctx, "Testing GetJob level %d\n", r.in.level); + torture_comment(tctx, "Testing GetJob(%d), level %d\n", job_id, r.in.level); needed = 0; |