summaryrefslogtreecommitdiff
path: root/source3/include/proto.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-02-26 19:53:55 +0000
committerJeremy Allison <jra@samba.org>1998-02-26 19:53:55 +0000
commitde3badf479eb08c19d4abc0625488effc79dc1fd (patch)
tree5993befe61e7ab92b7425d2351ff1da771c368a3 /source3/include/proto.h
parent64095b2486e3aca286103e28e400da3e40b14556 (diff)
downloadsamba-de3badf479eb08c19d4abc0625488effc79dc1fd.tar.gz
samba-de3badf479eb08c19d4abc0625488effc79dc1fd.tar.bz2
samba-de3badf479eb08c19d4abc0625488effc79dc1fd.zip
Fix for NT redirector bug where deltree fails if the resume key
indexes are changed between directory scans. This fix does what NT4.x SP3 does in that it stops using resume keys and returns zero instead. We now use the filename in findnext to continue the search in the correct place (as NT does). Jeremy. (This used to be commit b813fb22c4c1b0ee48667e99e82434d20266bbf2)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r--source3/include/proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 6f8edb445e..802d9973df 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -164,7 +164,7 @@ int dptr_create(int cnum,char *path, BOOL expect_close,int pid);
BOOL dptr_fill(char *buf1,unsigned int key);
BOOL dptr_zero(char *buf);
void *dptr_fetch(char *buf,int *num);
-void *dptr_fetch_lanman2(char *params,int dptr_num);
+void *dptr_fetch_lanman2(int dptr_num);
BOOL dir_check_ftype(int cnum,int mode,struct stat *st,int dirtype);
BOOL get_dir_entry(int cnum,char *mask,int dirtype,char *fname,int *size,int *mode,time_t *date,BOOL check_descend);
void *OpenDir(int cnum, char *name, BOOL use_veto);