summaryrefslogtreecommitdiff
path: root/structures.h
diff options
context:
space:
mode:
Diffstat (limited to 'structures.h')
-rw-r--r--structures.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/structures.h b/structures.h
index 39d6c03a..db912662 100644
--- a/structures.h
+++ b/structures.h
@@ -370,13 +370,13 @@ struct MainConfiguration
#ifdef FFS_WIN
globalFilter(Zstr("*"),
Zstr("\\System Volume Information\\\n")
- Zstr("\\RECYCLED\\\n")
+ Zstr("\\$Recycle.Bin\\\n")
Zstr("\\RECYCLER\\\n")
- Zstr("\\$Recycle.Bin\\")) {}
+ Zstr("\\RECYCLED\\\n")) {}
#elif defined FFS_LINUX
globalFilter(Zstr("*"),
Zstr("/.Trash-*/\n")
- Zstr("/.recycle/")) {}
+ Zstr("/.recycle/\n")) {}
#endif
CompConfig cmpConfig; //global compare settings: may be overwritten by folder pair settings
bgstack15