summaryrefslogtreecommitdiffstats
path: root/source/client/client.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-04-30 11:04:28 +0000
committerAndrew Tridgell <tridge@samba.org>2000-04-30 11:04:28 +0000
commit03e9cea004bbba72161a5323cf3b4556c94aed8e (patch)
tree041a2cb50d2285eaf58b6f95efdf75fb0d186b04 /source/client/client.c
parentcc9e007cdfdd300189f89e2a55e4234e47fa842d (diff)
downloadsamba-03e9cea004bbba72161a5323cf3b4556c94aed8e.tar.gz
samba-03e9cea004bbba72161a5323cf3b4556c94aed8e.tar.xz
samba-03e9cea004bbba72161a5323cf3b4556c94aed8e.zip
- removed all our old wildcard matching code and replaced it with a
call to ms_fnmatch(). This also removes all the Win9X semantics stuff and a bunch of other associated cruft. - moved the stat cache code into statcache.c - fixed the uint16 alignment requirements of ascii_to_unistr() and unistr_to_ascii() - trans2 SMB_FIND_FILE_BOTH_DIRECTORY_INFO returns the short name as unicode always (at least thats what NT4 does) - fixed some errors in the in-memory tdb code. Still ugly, but doesn't crash as much
Diffstat (limited to 'source/client/client.c')
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 08dd8970fcf..ade1436871c 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -302,7 +302,7 @@ static BOOL do_this_one(file_info *finfo)
if (finfo->mode & aDIR) return(True);
if (*fileselection &&
- !mask_match(finfo->name,fileselection,False,False)) {
+ !mask_match(finfo->name,fileselection,False)) {
DEBUG(3,("match_match %s failed\n", finfo->name));
return False;
}