From 8120a98f47d1dd8a583abe1cfe11aa8366d04e6b Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 6 Mar 2004 07:43:55 +0000 Subject: [PATCH] Define S_IRUSR if it doesn't already exist. --- rsync.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rsync.h b/rsync.h index 6811385e..ef8e3b4d 100644 --- a/rsync.h +++ b/rsync.h @@ -593,6 +593,10 @@ extern int errno; #define STDERR_FILENO 2 #endif +#ifndef S_IRUSR +#define S_IRUSR 0400 +#endif + #ifndef S_IWUSR #define S_IWUSR 0200 #endif -- 2.34.1