summaryrefslogtreecommitdiff
path: root/source3/smbd/dir.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-04-30 14:29:45 +0000
committerAndrew Tridgell <tridge@samba.org>2000-04-30 14:29:45 +0000
commit34cd425c1ded2afe5adc4d898843c31f66f26b5a (patch)
tree50c40dd590ce911bb91b10e7dcd48bb722762592 /source3/smbd/dir.c
parent565cc66e6ae93aa44305419298cd5973e57529fc (diff)
downloadsamba-34cd425c1ded2afe5adc4d898843c31f66f26b5a.tar.gz
samba-34cd425c1ded2afe5adc4d898843c31f66f26b5a.tar.bz2
samba-34cd425c1ded2afe5adc4d898843c31f66f26b5a.zip
fixed our smbsearch code. We now store the mask with the dptr, this
turns out to be essential for a correct implementation (there ins't enough room to store all possible masks in the status return structure!) (This used to be commit 38f5e133670ada6e5799a16cf1a0e2e3ee1d9afd)
Diffstat (limited to 'source3/smbd/dir.c')
-rw-r--r--source3/smbd/dir.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c
index bd4e2a44f9..ee383ea72a 100644
--- a/source3/smbd/dir.c
+++ b/source3/smbd/dir.c
@@ -591,7 +591,6 @@ BOOL get_dir_entry(connection_struct *conn,char *mask,int dirtype,char *fname,
while (!found)
{
- BOOL filename_is_mask = False;
dname = ReadDirName(conn->dirptr);
DEBUG(6,("readdir on dirptr 0x%lx now at offset %d\n",
@@ -602,13 +601,22 @@ BOOL get_dir_entry(connection_struct *conn,char *mask,int dirtype,char *fname,
pstrcpy(filename,dname);
- if ((filename_is_mask = (strcmp(filename,mask) == 0)) ||
+ /* notice the special *.* handling. This appears to be the only difference
+ between the wildcard handling in this routine and in the trans2 routines.
+ see masktest for a demo
+ */
+ if ((strcmp(mask,"*.*") == 0) ||
+ mask_match(filename,mask,False) ||
(name_map_mangle(filename,True,False,SNUM(conn)) &&
mask_match(filename,mask,False)))
{
if (isrootdir && (strequal(filename,"..") || strequal(filename,".")))
continue;
+ if (!is_8_3(filename, False)) {
+ name_map_mangle(filename,True,False,SNUM(conn));
+ }
+
pstrcpy(fname,filename);
*path = 0;
pstrcpy(path,conn->dirpath);
@@ -631,17 +639,10 @@ BOOL get_dir_entry(connection_struct *conn,char *mask,int dirtype,char *fname,
continue;
}
- if (!filename_is_mask)
- {
- /* Now we can allow the mangled cache to be updated */
- pstrcpy(filename,dname);
- name_map_mangle(filename,True,True,SNUM(conn));
- }
-
*size = sbuf.st_size;
*date = sbuf.st_mtime;
- DEBUG(5,("get_dir_entry found %s fname=%s\n",pathreal,fname));
+ DEBUG(0,("get_dir_entry mask=[%s] found %s fname=%s\n",mask, pathreal,fname));
found = True;
}