fall back to "unsigned" for uint32 on systems that don't have one
authorAndrew Tridgell <tridge@samba.org>
Tue, 26 Jun 2001 05:21:49 +0000 (05:21 +0000)
committerAndrew Tridgell <tridge@samba.org>
Tue, 26 Jun 2001 05:21:49 +0000 (05:21 +0000)
(This used to be commit 4d0c3167099f461b46fafaa3a35b14babbadcb93)

source3/include/includes.h

index 32f8429345bd27536b1b71aa1b366fe26ba3c63d..b801e1408c78ef814dee331923fbb1f320a21805 100644 (file)
@@ -449,7 +449,9 @@ typedef int socklen_t;
 #define uint32 unsigned long
 #elif (SIZEOF_SHORT == 4)
 #define uint32 unsigned short
-#endif
+#else
+/* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
+#define uint32 unsigned
 #endif
 
 /*