summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-02-28 07:01:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:55:48 -0500
commit2f158e1565e634958abf2efe31736c55d20f55cd (patch)
tree5c5b94ec9347af36f3b54659f7a1f2cb0fde8b08
parent180fa12026caef8f22154e0e7c60f9043b5588e2 (diff)
downloadsamba-2f158e1565e634958abf2efe31736c55d20f55cd.tar.gz
samba-2f158e1565e634958abf2efe31736c55d20f55cd.tar.bz2
samba-2f158e1565e634958abf2efe31736c55d20f55cd.zip
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)
-rw-r--r--source3/torture/torture.c4
1 files 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;