search for: perms_report

Displaying 2 results from an estimated 2 matches for "perms_report".

2004 May 10
2
read error produces null-byte-filled destination file
I've run into a bug in the IO handling when reading a file. Suppose I have a file that lives on an NFS filesystem. That filesystem is NOT being exported with auth=0 permissions. So, if I try to access a file as root, it successfully opens the file, but subsequent reads fail with EACCES. This produces a destination file full of null bytes. I noticed this with 2.5.7, but checked 2.6.2 as
2005 Jan 31
1
[patch] add "--ignore" option
...--- ../rsync-HEAD-20050125-1221GMT.orig/rsync.h Tue Jan 25 12:21:14 2005 +++ ./rsync.h Thu Jan 27 14:47:03 2005 @@ -114,6 +114,7 @@ #define XFLG_DIRECTORY (1<<4) #define XFLG_NO_PREFIXES (1<<5) #define XFLG_ABS_PATH (1<<6) +#define XFLG_DEF_IGNORE (1<<7) #define PERMS_REPORT (1<<0) #define PERMS_SKIP_MTIME (1<<1) @@ -517,6 +518,7 @@ #define MATCHFLG_PERDIR_MERGE (1<<11)/* merge-file is searched per-dir */ #define MATCHFLG_EXCLUDE_SELF (1<<12)/* merge-file name should be excluded */ #define MATCHFLG_FINISH_SETUP (1<<13)/* per-dir merge...