X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ae289aec1e3992b8a805567b444bd35d8258bc3d..8aa81e06e644bb1632e07e041e409c7149fd13d5:/rsync.h diff --git a/rsync.h b/rsync.h index a0197188..61e5f06b 100644 --- a/rsync.h +++ b/rsync.h @@ -112,6 +112,9 @@ #define FULL_FLUSH 1 #define NORMAL_FLUSH 0 +#define CLEAR_STRUCT 0 +#define FREE_STRUCT 1 + /* Log-message categories. FLOG is only used on the daemon side to * output messages to the log file. */ enum logcode { FERROR=1, FINFO=2, FLOG=3 }; @@ -422,7 +425,7 @@ struct file_struct { char *basedir; uid_t uid; gid_t gid; - uchar flags; + uchar flags; /* this item MUST remain last */ }; #define ARENA_SIZE (32 * 1024) @@ -709,6 +712,17 @@ size_t strlcat(char *d, const char *s, size_t bufsize); #define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__) +#ifdef HAVE_GETEUID +#define MY_UID() geteuid() +#else +#define MY_UID() getuid() +#endif + +#ifdef HAVE_GETEGID +#define MY_GID() getegid() +#else +#define MY_GID() getgid() +#endif extern int verbose;