Commit 8014229a authored by bescoto's avatar bescoto

Fix for case sensitive <-> not case sensitive case


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@699 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent f3f003a5
......@@ -484,7 +484,7 @@ class BackupSetGlobals(SetGlobals):
def get_ctq_from_fsas(self):
"""Determine chars_to_quote just from filesystems, no ctq file"""
if not self.src_fsa.case_sensitive and self.dest_fsa.case_sensitive:
if self.src_fsa.case_sensitive and not self.dest_fsa.case_sensitive:
if self.dest_fsa.extended_filenames:
return "A-Z;" # Quote upper case and quoting char
else: return "^a-z0-9_ -." # quote everything but basic chars
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment