X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5cb31dcf92055e7341f710fb10e063fbb4000fe5..f5b14759fbebac1d1e332db7c10f2b8aff710d41:/rsync.h diff --git a/rsync.h b/rsync.h index 2a405320..a5715a3d 100644 --- a/rsync.h +++ b/rsync.h @@ -787,7 +787,8 @@ extern int errno; #define INADDR_NONE 0xffffffff #endif -#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode)) +#define IS_SPECIAL(mode) (S_ISSOCK(mode) || S_ISFIFO(mode)) +#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode)) /* Initial mask on permissions given to temporary files. Mask off setuid bits and group access because of potential race-condition security