The attached patch is the culprit, try reverting it.

Jean-Louis

Marc Muehlfeld wrote:
Am 30.05.2011 12:25, schrieb Francis Galiegue:
Can you try and apply the patch at this URL:
http://paste.pocoo.org/show/397601/
over 3.2.3, and see if it works again?

Doesn't fixes the issue.


If you need any logfiles, just let me know.





diff --git a/server-src/list_dir.c b/server-src/list_dir.c
index 060f07f..a536639 100644
--- a/server-src/list_dir.c
+++ b/server-src/list_dir.c
@@ -89,8 +89,10 @@ add_dir_list_item(
 	return 0; /* added */
     }
 
-    if(strcmp(path,dir_last->path) == 0)
+    if (strcmp(path,dir_last->path) == 0 &&
+	dir_last->dump == dump) {
 	return 0; /* found */
+    }
 
     /* add at head of list */
     if(strcmp(path,dir_list->path) < 0)

Reply via email to