From 250a9ce9007947c535b9abfc03b47550597c22c6 Mon Sep 17 00:00:00 2001 From: danfe Date: Fri, 25 Mar 2005 10:54:10 +0000 Subject: 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) --- net/samba3/Makefile | 2 +- net/samba3/files/patch-smbd_dir.c | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 net/samba3/files/patch-smbd_dir.c diff --git a/net/samba3/Makefile b/net/samba3/Makefile index febbe90..56b950c 100644 --- a/net/samba3/Makefile +++ b/net/samba3/Makefile @@ -7,7 +7,7 @@ PORTNAME= samba PORTVERSION?= 3.0.12 -PORTREVISION?= 0 +PORTREVISION?= 1 PORTEPOCH?= 1 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SAMBA} diff --git a/net/samba3/files/patch-smbd_dir.c b/net/samba3/files/patch-smbd_dir.c new file mode 100644 index 0000000..e7a7a87 --- /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; -- cgit v1.1