Prevent tempfile names from overflowing.
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index 21bd1b2..bd804f7 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -344,6 +344,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
 #define MAXPATHLEN 1024
 #endif
 
+#ifndef NAME_MAX
+#define NAME_MAX 255
+#endif
+
 #ifndef INADDR_NONE
 #define INADDR_NONE 0xffffffff
 #endif