summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-06-26 05:21:49 +0000
committerAndrew Tridgell <tridge@samba.org>2001-06-26 05:21:49 +0000
commit8a0480b137a6bf8d0ddce4d7dc1dd87c223af14f (patch)
tree976904f58ce3410d0c5bf9353b079a3d2db78293
parent90498a10c79edabf629c98403363b8e0b934e047 (diff)
downloadsamba-8a0480b137a6bf8d0ddce4d7dc1dd87c223af14f.tar.gz
samba-8a0480b137a6bf8d0ddce4d7dc1dd87c223af14f.tar.bz2
samba-8a0480b137a6bf8d0ddce4d7dc1dd87c223af14f.zip
fall back to "unsigned" for uint32 on systems that don't have one
(This used to be commit 4d0c3167099f461b46fafaa3a35b14babbadcb93)
-rw-r--r--source3/include/includes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index 32f8429345..b801e1408c 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -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
/*