rdiff-backup-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Rdiff-backup-commits] rdiff-backup CHANGELOG rdiff_backup/fs_abilitie..


From: Andrew Ferguson
Subject: [Rdiff-backup-commits] rdiff-backup CHANGELOG rdiff_backup/fs_abilitie...
Date: Fri, 04 Jul 2008 02:10:49 +0000

CVSROOT:        /sources/rdiff-backup
Module name:    rdiff-backup
Changes by:     Andrew Ferguson <owsla> 08/07/04 02:10:49

Modified files:
        .              : CHANGELOG 
        rdiff_backup   : fs_abilities.py robust.py 

Log message:
        Fix typo in fs_abilities and add EILSEQ to list of recoverable errors.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/CHANGELOG?cvsroot=rdiff-backup&r1=1.284&r2=1.285
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/rdiff_backup/fs_abilities.py?cvsroot=rdiff-backup&r1=1.47&r2=1.48
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/rdiff_backup/robust.py?cvsroot=rdiff-backup&r1=1.39&r2=1.40

Patches:
Index: CHANGELOG
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/CHANGELOG,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -b -r1.284 -r1.285
--- CHANGELOG   3 Jul 2008 21:44:18 -0000       1.284
+++ CHANGELOG   4 Jul 2008 02:10:48 -0000       1.285
@@ -1,6 +1,10 @@
 New in v1.1.17 (????/??/??)
 ---------------------------
 
+Fix typo in fs_abilities noticed by Martin Krafft. Add EILSEQ ("Invalid or
+incomplete multibyte or wide character") to the list of recoverable errors.
+Thanks to Hanno Stock for catching that. (Andrew Ferguson)
+
 Catch another reasonable error when reading EAs. (Andrew Ferguson)
 
 Use the Python os.lstat() on Windows. (Patch from Josh Nisly)

Index: rdiff_backup/fs_abilities.py
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/rdiff_backup/fs_abilities.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -b -r1.47 -r1.48
--- rdiff_backup/fs_abilities.py        2 Jul 2008 18:03:23 -0000       1.47
+++ rdiff_backup/fs_abilities.py        4 Jul 2008 02:10:49 -0000       1.48
@@ -541,7 +541,7 @@
                                                   ('acls_active', 
'acls_write', 'acls_conn'))
                if Globals.never_drop_acls and not Globals.acls_active:
                        log.Log.FatalError("--never-drop-acls specified, but 
ACL support\n"
-                                                          "missing from 
destination filesystem")
+                                                          "missing from source 
filesystem")
 
        def set_win_acls(self):
                self.update_triple(self.src_fsa.win_acls, 
self.dest_fsa.win_acls,

Index: rdiff_backup/robust.py
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/rdiff_backup/robust.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -b -r1.39 -r1.40
--- rdiff_backup/robust.py      10 Jun 2008 13:09:27 -0000      1.39
+++ rdiff_backup/robust.py      4 Jul 2008 02:10:49 -0000       1.40
@@ -52,7 +52,7 @@
                (exc[0] in ('invalid mode: rb', 'Not a gzipped file') or
                 errno.errorcode.has_key(exc[0]) and
                 errno.errorcode[exc[0]] in ('EPERM', 'ENOENT', 'EACCES', 
'EBUSY',
-                                                                        
'EEXIST', 'ENOTDIR',
+                                                                        
'EEXIST', 'ENOTDIR', 'EILSEQ',
                                                                         
'ENAMETOOLONG', 'EINTR',
                                                                         
'ENOTEMPTY', 'EIO', 'ETXTBSY',
                                                                         
'ESRCH', 'EINVAL', 'EDEADLOCK',




reply via email to

[Prev in Thread] Current Thread [Next in Thread]