diff options
| author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-03-25 10:54:10 +0000 |
|---|---|---|
| committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-03-25 10:54:10 +0000 |
| commit | 0c8c0874e3bb7ae69679bee761d9070b48a59422 (patch) | |
| tree | 875f52243712819366d777032cfde9138bdd9de4 /net/samba3/files/patch-smbd_dir.c | |
| parent | Update to 1.0.4. (diff) | |
Fix a bug that breaks copy/delete of files from Win98 Explorer.
Bugzilla: https://bugzilla.samba.org/show_bug.cgi?id=2501
Approved by: portmgr (krion)
Diffstat (limited to 'net/samba3/files/patch-smbd_dir.c')
| -rw-r--r-- | net/samba3/files/patch-smbd_dir.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/samba3/files/patch-smbd_dir.c b/net/samba3/files/patch-smbd_dir.c new file mode 100644 index 000000000000..e7a7a87ec83b --- /dev/null +++ b/net/samba3/files/patch-smbd_dir.c @@ -0,0 +1,20 @@ +## +## See https://bugzilla.samba.org/bug/2501 for details +## +diff -urBb --exclude-from=samba-cvs/diff.excludes samba-3.0.12-orig/source/smbd/dir.c samba-3.0.12/source/smbd/dir.c +--- smbd/dir.c.orig 2005-03-18 08:56:41.000000000 -0600 ++++ smbd/dir.c 2005-03-21 12:51:56.541216536 -0600 +@@ -595,6 +595,13 @@ + BOOL dptr_SearchDir(struct dptr_struct *dptr, const char *name, long *poffset, SMB_STRUCT_STAT *pst) + { + ZERO_STRUCTP(pst); ++ ++ if (!dptr->has_wild && (dptr->dir_hnd->offset == -1)) { ++ /* This is a singleton directory and we're already at the end. */ ++ *poffset = -1; ++ return False; ++ } ++ + while (SearchDir(dptr->dir_hnd, name, poffset) == True) { + if (is_visible_file(dptr->conn, dptr->path, name, pst, True)) { + return True; |
