diff options
author | Tim Potter <tpot@samba.org> | 2004-08-19 09:59:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:23 -0500 |
commit | 423d98fe93c93a8ecc7e6be33ffa5ccac1142158 (patch) | |
tree | a268f82eb6c3eed10d3568a19f796ee5611b0a77 /source3 | |
parent | 9723edd84f90582a8cf394f45d70af6086e714a6 (diff) | |
download | samba-423d98fe93c93a8ecc7e6be33ffa5ccac1142158.tar.gz samba-423d98fe93c93a8ecc7e6be33ffa5ccac1142158.tar.bz2 samba-423d98fe93c93a8ecc7e6be33ffa5ccac1142158.zip |
r1908: Bugzilla #1541. Fix recursive ls in smbclient. Fix by Josef Zlomek.
(This used to be commit e59af43f6b8f824447bd20efc08dd81f2774e99c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 1fccfaa581..e14bcaa261 100644 --- a/source3/client/client.c +++ b/source3/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); |