X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/de32838ea21e826bb529e982d3a369b5cbd0d791..14ebc5b618ec6d4668e120acc7a75ae8efd677e7:/rsync.h diff --git a/rsync.h b/rsync.h index efa42c8f..3404da78 100644 --- a/rsync.h +++ b/rsync.h @@ -465,6 +465,8 @@ typedef unsigned int mode_t; #endif #ifndef HAVE_OFF_T typedef long off_t; +#undef SIZEOF_OFF_T +#define SIZEOF_OFF_T SIZEOF_LONG #endif #ifndef HAVE_SIZE_T typedef unsigned int size_t; @@ -1117,6 +1119,10 @@ extern int errno; #define IS_SPECIAL(mode) (S_ISSOCK(mode) || S_ISFIFO(mode)) #define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode)) +#define PRESERVE_FILE_TIMES (1<<0) +#define PRESERVE_DIR_TIMES (1<<1) +#define PRESERVE_LINK_TIMES (1<<2) + /* Initial mask on permissions given to temporary files. Mask off setuid bits and group access because of potential race-condition security holes, and mask other access because mode 707 is bizarre */