From e59af43f6b8f824447bd20efc08dd81f2774e99c Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 19 Aug 2004 09:59:08 +0000 Subject: [PATCH] r1908: Bugzilla #1541. Fix recursive ls in smbclient. Fix by Josef Zlomek. --- source/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/client.c b/source/client/client.c index 1fccfaa581c..e14bcaa2616 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -592,7 +592,7 @@ static int cmd_dir(void) else pstrcat(mask,p); } else { - pstrcat(mask,"*"); + pstrcat(mask,"\\*"); } do_list(mask, attribute, display_finfo, recurse, True); -- 2.47.3