From 2f158e1565e634958abf2efe31736c55d20f55cd Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 28 Feb 2005 07:01:52 +0000 Subject: r5589: Ensure the torture code that uses cli_list and cli_list_old matches the new MS-DFS function prototypes. Should fix the build farm tests. Jeremy. (This used to be commit 3d4d8bb6544abc4959f75bb962d8e1fb3d37a55e) --- source3/torture/torture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/torture/torture.c b/source3/torture/torture.c index ec13abc1c1..84755a781a 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4138,7 +4138,7 @@ static BOOL run_openattrtest(int dummy) return correct; } -static void list_fn(file_info *finfo, const char *name, void *state) +static void list_fn(const char *mnt, file_info *finfo, const char *name, void *state) { } @@ -4198,7 +4198,7 @@ static BOOL run_dirtest(int dummy) return correct; } -static void del_fn(file_info *finfo, const char *mask, void *state) +static void del_fn(const char *mnt, file_info *finfo, const char *mask, void *state) { struct cli_state *pcli = (struct cli_state *)state; fstring fname; -- cgit