Marc,

I committed the attached patch.

Jean-Louis

Marc Muehlfeld wrote:
Am 30.05.2011 13:49, schrieb Jean-Louis Martineau:
The attached patch is the culprit, try reverting it.

Yes, it was.

Thanks.




diff --git a/server-src/list_dir.c b/server-src/list_dir.c
index 858370d..2549f05 100644
--- a/server-src/list_dir.c
+++ b/server-src/list_dir.c
@@ -89,8 +89,8 @@ add_dir_list_item(
 	return 0; /* added */
     }
 
-    if (strcmp(path,dir_last->path) == 0 &&
-	dir_last->dump == dump) {
+    if (strcmp(path, "/") != 0 &&
+	strcmp(path, dir_last->path) == 0) {
 	return 0; /* found */
     }
 

Reply via email to