From 72e16f233d31c893ae6886a7560fc2fa0fc1f921 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 13 Dec 2002 19:07:25 +0000 Subject: Fix for old DOS client when veto files is set to /.*/ Jeremy. (This used to be commit 636ab292db8816663c507dd8dbf85078392af5f8) --- source3/smbd/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit