diff options
author | Jeremy Allison <jra@samba.org> | 2002-12-13 19:07:37 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-12-13 19:07:37 +0000 |
commit | 8e9f3b1574cd51d6b9880d9c8a676e695cd86062 (patch) | |
tree | 839b79b1fda7b1bccfc9d849b52c292be3627016 /source | |
parent | d57bddc9b22e809c79294c7eacbd5d0f115fe990 (diff) | |
download | samba-8e9f3b1574cd51d6b9880d9c8a676e695cd86062.tar.gz samba-8e9f3b1574cd51d6b9880d9c8a676e695cd86062.tar.xz samba-8e9f3b1574cd51d6b9880d9c8a676e695cd86062.zip |
Fix for old DOS client when veto files is set to /.*/
Jeremy.
Diffstat (limited to 'source')
-rw-r--r-- | source/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index 96b7692b1a3..de15faec816 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -654,7 +654,7 @@ int reply_search(connection_struct *conn, char *inbuf,char *outbuf, int dum_size *p = 0; if (strlen(directory) == 0) - pstrcpy(directory,"./"); + pstrcpy(directory,"."); memset((char *)status,'\0',21); SCVAL(status,0,(dirtype & 0x1F)); } else { |