From a22ca88565a116e6867d75222222e522bea67c30 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 29 Jul 2005 18:31:03 +0000 Subject: [PATCH] Define BIGPATHBUFLEN -- a roomy line-buffer that can hold a MAXPATHLEN string plus a message, and it's at least 4096+1024 bytes for those systems where MAXPATHLEN is overly short. --- rsync.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rsync.h b/rsync.h index e079a653..5a86d083 100644 --- a/rsync.h +++ b/rsync.h @@ -463,6 +463,14 @@ struct idev { #define MAXPATHLEN 1024 #endif +/* We want a roomy line buffer that can hold more than MAXPATHLEN, + * and significantly more than an overly short MAXPATHLEN. */ +#if MAXPATHLEN < 4096 +#define BIGPATHBUFLEN (4096+1024) +#else +#define BIGPATHBUFLEN (MAXPATHLEN+1024) +#endif + #ifndef NAME_MAX #define NAME_MAX 255 #endif -- 2.34.1