diff options
author | Jeremy Allison <jra@samba.org> | 2002-12-13 19:07:25 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-12-13 19:07:25 +0000 |
commit | 72e16f233d31c893ae6886a7560fc2fa0fc1f921 (patch) | |
tree | 44fc1ff67ce91fa482092a60ca0652d206f86e13 /source3/smbd | |
parent | bfd8043a403dfed84bc568685580703a8470738d (diff) | |
download | samba-72e16f233d31c893ae6886a7560fc2fa0fc1f921.tar.gz samba-72e16f233d31c893ae6886a7560fc2fa0fc1f921.tar.bz2 samba-72e16f233d31c893ae6886a7560fc2fa0fc1f921.zip |
Fix for old DOS client when veto files is set to /.*/
Jeremy.
(This used to be commit 636ab292db8816663c507dd8dbf85078392af5f8)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 96b7692b1a..de15faec81 100644 --- a/source3/smbd/reply.c +++ b/source3/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 { |