From 6a2adea2adb53da122ab147ef6e055f9f7830d18 Mon Sep 17 00:00:00 2001 From: leitner Date: Thu, 7 Sep 2023 16:28:49 +0000 Subject: [PATCH] change boolean typesOnly in search request to int --- ldap.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ldap.h b/ldap.h index 4c307e9..11b978a 100644 --- a/ldap.h +++ b/ldap.h @@ -62,7 +62,8 @@ struct SearchRequest { derefFindingBaseObj=2, derefAlways=3 } derefAliases; - unsigned long sizeLimit, timeLimit, typesOnly; + unsigned long sizeLimit, timeLimit; + int typesOnly; struct Filter* filter; struct AttributeDescriptionList* attributes; };