At least change INO64_T and DEV64_T back to just 'int64', not
authorMartin Pool <mbp@samba.org>
Wed, 13 Feb 2002 02:57:55 +0000 (02:57 +0000)
committerMartin Pool <mbp@samba.org>
Wed, 13 Feb 2002 02:57:55 +0000 (02:57 +0000)
'unsigned int64'.  This should fix some compile problems on machines
where int64 is not a simple integer type, but I'm not convinced it is
the ideal fix.

rsync.h

diff --git a/rsync.h b/rsync.h
index bb45907..fb7f333 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -301,8 +301,8 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
  * cope with platforms on which this is an unsigned int or even a
  * struct.  Later.
  */ 
-#define INO64_T unsigned int64
-#define DEV64_T unsigned int64
+#define INO64_T int64
+#define DEV64_T int64
 
 #ifndef MIN
 #define MIN(a,b) ((a)<(b)?(a):(b))