Fix check for ino_t to work with both autoconf2.50 and autoconf2.13.
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index cb138be..e5b5038 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -256,9 +256,11 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
 #endif
 
 #if HAVE_SHORT_INO_T
-#define INO_T uint32
+#  define INO_T uint32
+#elif HAVE_INO_T
+#  define INO_T ino_t
 #else
-#define INO_T ino_t
+#  define INO_T unsigned
 #endif
 
 #ifndef MIN