summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-05-20 02:07:57 +0000
committerJeremy Allison <jra@samba.org>1998-05-20 02:07:57 +0000
commitfd4d5ab75da1e7703919b66ad174e98d94574701 (patch)
tree937020c63f1221f6af9a71bb74510d1cfbb9dea4 /source3
parentbff8dd86eeaa12c393e1fc70d230538c13801865 (diff)
downloadsamba-fd4d5ab75da1e7703919b66ad174e98d94574701.tar.gz
samba-fd4d5ab75da1e7703919b66ad174e98d94574701.tar.bz2
samba-fd4d5ab75da1e7703919b66ad174e98d94574701.zip
Minor tweak for wcard compatibility paranoia.
Jeremy. (This used to be commit 5d8ef7d0f1ecb358c841f382fc48e6eccbe8e171)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/trans2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index 372ab58b65..84d9b1cc17 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -680,7 +680,7 @@ static int call_trans2findfirst(char *inbuf, char *outbuf, int bufsize, int cnum
while (*p) {
if (*p == '<') {
pstring expnd;
- if(p[1] != '"') {
+ if(p[1] != '"' && p[1] != '.') {
pstrcpy( expnd, p+1 );
*p++ = '*';
*p = '.';