From 6ea1824a5ca221d05ed4690b9018c31779d3286c Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Mon, 11 Feb 2002 15:48:34 +0000 Subject: Add ability to extend ads modification list on the fly. Added ADS_MODLIST type. (This used to be commit 3f7ba70615008d74a145a94aa087cae08efab343) --- source3/include/ads.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3') diff --git a/source3/include/ads.h b/source3/include/ads.h index 343f505f8b..6c441f870f 100644 --- a/source3/include/ads.h +++ b/source3/include/ads.h @@ -85,6 +85,12 @@ typedef struct { int minor_status; } ADS_STATUS; +#ifdef HAVE_ADS +typedef LDAPMod **ADS_MODLIST; +#else +typedef void **ADS_MODLIST; +#endif + /* macros to simplify error returning */ #define ADS_ERROR(rc) ads_build_error(ADS_ERROR_LDAP, rc, 0) #define ADS_ERROR_SYSTEM(rc) ads_build_error(ADS_ERROR_SYSTEM, rc, 0) -- cgit