From: Andrew Tridgell Date: Wed, 13 May 1998 13:22:26 +0000 (+0000) Subject: define INADDR_NONE if necessary X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/0473e2a14a57169f3b129329956c14d8f60dc7cd define INADDR_NONE if necessary --- diff --git a/rsync.h b/rsync.h index 0368451a..bbfe689c 100644 --- a/rsync.h +++ b/rsync.h @@ -252,6 +252,10 @@ #define MAXPATHLEN 1024 #endif +#ifndef INADDR_NONE +#define INADDR_NONE 0xffffffff +#endif + struct file_struct { unsigned flags; time_t modtime;