summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-12-23 22:47:15 +0000
committerJeremy Allison <jra@samba.org>1998-12-23 22:47:15 +0000
commitca06d8a2316b0f36fc25a3ac000cb9249a60ea22 (patch)
treeed90c3f5e22c220197915795c181fa4fb5cfbc17
parent7564b2b6e7913258d0af4cc933823f786da60aac (diff)
downloadsamba-ca06d8a2316b0f36fc25a3ac000cb9249a60ea22.tar.gz
samba-ca06d8a2316b0f36fc25a3ac000cb9249a60ea22.tar.xz
samba-ca06d8a2316b0f36fc25a3ac000cb9249a60ea22.zip
Fixing the last issue known about....
(with a filename of log123.abcd, a dir command of dir l*.???.?.?.?.?.? should find the file, as it does on NT). Jeremy.
-rw-r--r--source/smbd/trans2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/trans2.c b/source/smbd/trans2.c
index 8afc9a29bcd..f201222a8e6 100644
--- a/source/smbd/trans2.c
+++ b/source/smbd/trans2.c
@@ -377,7 +377,7 @@ static int get_lanman2_dir_entry(connection_struct *conn,
pstring newname;
pstrcpy( newname, fname);
name_map_mangle( newname, True, SNUM(conn));
- got_match = mask_match(newname, mask, case_sensitive, False);
+ got_match = mask_match(newname, mask, case_sensitive, True);
}
if(got_match)