[BACK]Return to receiver.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rsync

Diff for /src/usr.bin/rsync/receiver.c between version 1.12 and 1.13

version 1.12, 2019/02/16 10:44:01 version 1.13, 2019/02/16 10:47:20
Line 88 
Line 88 
                 LOG4(sess, "%s: updated date", f->path);                  LOG4(sess, "%s: updated date", f->path);
         }          }
   
           /* Conditionally adjust file permissions. */
   
           if (newfile || sess->opts->preserve_perms) {
                   if (fchmod(fd, f->st.mode) == -1) {
                           ERR(sess, "%s: fchmod", path);
                           return 0;
                   }
                   LOG4(sess, "%s: updated permissions", f->path);
           }
   
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13