diff options
author | Jeremy Allison <jra@samba.org> | 2007-04-06 19:38:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:13 -0500 |
commit | d4f15433352b9decda2f2a59906aa0f74dac0fb7 (patch) | |
tree | a436aa001aca809bbd3c30dd3ffe47e627d01fb3 | |
parent | fc9f6d6087f591a0c48840a5686557ba5a13cb0d (diff) | |
download | samba-d4f15433352b9decda2f2a59906aa0f74dac0fb7.tar.gz samba-d4f15433352b9decda2f2a59906aa0f74dac0fb7.tar.bz2 samba-d4f15433352b9decda2f2a59906aa0f74dac0fb7.zip |
r22108: Fix from <don.mccall@hp.com> to try and fix the HPUX builds.
Jeremy.
(This used to be commit 4de297112b9d87e58d870889007001169265e084)
-rw-r--r-- | source3/include/includes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 47be8bea90..53f6ab8b58 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -178,8 +178,8 @@ * HP LDAP-UX Integration products' LDAP libraries. */ #ifndef ber_tag_t -typedef unsigned int ber_tag_t; -typedef unsigned int ber_int_t; +typedef unsigned long ber_tag_t; +typedef int ber_int_t; #endif #endif /* HPUX */ #ifndef LBER_USE_DER |