From 8861c4a68ed23af2388103f2ca793f6833b4b58b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 14 May 2007 05:53:26 +0000 Subject: r22838: Add in an explority test for what QFSINFO operations are valid on IPC$ It seems most opertaions are supported, but that the values are not consistant. I think these are very much hand-hacked stubs, which is what they will be on Samba4 too. I'll need to add some more 'don't fail for...' hacks before this passes against Win2k3. Andrew Bartlett (This used to be commit dcb858d0c716b23be6c5d36b4aa6f155582ada63) --- source4/torture/raw/qfsinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/raw/qfsinfo.c') diff --git a/source4/torture/raw/qfsinfo.c b/source4/torture/raw/qfsinfo.c index 175a4ed15a..50a5a6609a 100644 --- a/source4/torture/raw/qfsinfo.c +++ b/source4/torture/raw/qfsinfo.c @@ -289,7 +289,7 @@ BOOL torture_raw_qfsinfo(struct torture_context *torture) #define STR_CHECK(sname, stype, field, flags) do { \ s1 = find(sname); \ if (s1) { \ - if (s1->stype.out.field.s && wire_bad_flags(&s1->stype.out.field, flags, cli)) { \ + if (s1->stype.out.field.s && wire_bad_flags(&s1->stype.out.field, flags, cli->transport)) { \ printf("(%d) incorrect string termination in %s/%s\n", \ __LINE__, #stype, #field); \ ret = False; \ -- cgit