diff options
author | Gerald Carter <jerry@samba.org> | 2006-08-22 22:53:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:46 -0500 |
commit | 975b15949013f86ffa43675537183b20f3519ed2 (patch) | |
tree | 190bd943a4f4105de27822967194a21028af9a1f /source3/include | |
parent | 21e35f8e73a5d63e17486b286827a06a6029afbe (diff) | |
download | samba-975b15949013f86ffa43675537183b20f3519ed2.tar.gz samba-975b15949013f86ffa43675537183b20f3519ed2.tar.bz2 samba-975b15949013f86ffa43675537183b20f3519ed2.zip |
r17723: * BUG 3969: Fix unsigned time comparison with expiration policy from AD DC
* Merge patches from SLES10 to make sure we talk to the correct
winbindd process when performing pam_auth (and pull the password policy info).
(This used to be commit 43bd8c00abb38eb23a1497a255d194fb1bbffffb)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index bd65edbab0..524e6ab8d2 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -671,6 +671,14 @@ typedef int socklen_t; #endif /* don't lie. If we don't have it, then don't use it */ #endif +#if !defined(int64) +#if (SIZEOF_LONG == 8) +#define int64 long +#elif (SIZEOF_LONG_LONG == 8) +#define int64 long long +#endif /* don't lie. If we don't have it, then don't use it */ +#endif + /* * Types for devices, inodes and offsets. |