diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-01-24 08:55:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:24 -0500 |
commit | b0d4004396bd1f9a2b9faa4f6ba62d36d63c50ca (patch) | |
tree | fc3601b61480b3606150e1f3a444241d41938822 | |
parent | a1f0af5205bd5b2a6c93cdf560deb54277160a08 (diff) | |
download | samba-b0d4004396bd1f9a2b9faa4f6ba62d36d63c50ca.tar.gz samba-b0d4004396bd1f9a2b9faa4f6ba62d36d63c50ca.tar.bz2 samba-b0d4004396bd1f9a2b9faa4f6ba62d36d63c50ca.zip |
r20996: Build fix from Kai Blin
(This used to be commit 91fdbd4cf5f8fe44adcbe8dc8ef38579a8306c39)
-rw-r--r-- | source3/include/includes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 148bfc4414..da390c87ea 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -778,7 +778,8 @@ enum flush_reason_enum { #ifdef HAVE_LDAP #include "ads_protos.h" #else -typedef LDAPMessage void; +struct _LDAPMessage; +typedef struct _LDAPMessage *LDAPMessage; #endif /* We need this after proto.h to reference GetTimeOfDay(). */ |