From 590c9b7b6df643f0ff3e8f36bdc535ef00b30073 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 8 Jan 2009 15:41:49 -0800 Subject: Fix bug #6021 - smbclient du command does not recuse properly Jeremy. --- source3/client/client.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index c40c04e9c6..adcbffe6fa 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -747,11 +747,11 @@ static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, return; } p = strrchr_m(mask2,CLI_DIRSEP_CHAR); - if (!p) { - TALLOC_FREE(dir); - return; + if (p) { + p[1] = 0; + } else { + mask2[0] = '\0'; } - p[1] = 0; mask2 = talloc_asprintf_append(mask2, "%s%s*", f->name, -- cgit