diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-19 12:06:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:01:55 -0500 |
commit | 72093ce62f1e09db86452720fe8280ad66824cde (patch) | |
tree | 62aa8cb4fc470254be4283efb20669858ab21189 /source4/include/includes.h | |
parent | 343545a8836d1665bb3c41974d743b03fd0b6446 (diff) | |
download | samba-72093ce62f1e09db86452720fe8280ad66824cde.tar.gz samba-72093ce62f1e09db86452720fe8280ad66824cde.tar.bz2 samba-72093ce62f1e09db86452720fe8280ad66824cde.zip |
r3064: - use UINT8_MAX and UINT16_MAX instead of hex values for idr_get_new() limits
- change idr_get_new() to use > instead of >= in the limit check
(This used to be commit 834b09929bcb8aabdd151b7c2306001497cabdb4)
Diffstat (limited to 'source4/include/includes.h')
-rw-r--r-- | source4/include/includes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index 85e4299efd..0290f652ab 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -466,6 +466,14 @@ typedef int socklen_t; #define uint64 uint64_t #endif +#ifndef UINT8_MAX +#define UINT8_MAX 255 +#endif + +#ifndef UINT16_MAX +#define UINT16_MAX 65535 +#endif + /* * Types for devices, inodes and offsets. */ |