Define BIGPATHBUFLEN -- a roomy line-buffer that can hold a
authorWayne Davison <wayned@samba.org>
Fri, 29 Jul 2005 18:31:03 +0000 (18:31 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 29 Jul 2005 18:31:03 +0000 (18:31 +0000)
MAXPATHLEN string plus a message, and it's at least 4096+1024
bytes for those systems where MAXPATHLEN is overly short.

rsync.h

diff --git a/rsync.h b/rsync.h
index e079a65..5a86d08 100644 (file)
--- 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