From 67c69e72a347c69f599f504b18e47248109bca4f Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 28 Nov 2017 17:56:10 +0100 Subject: [PATCH] Fix implicit declaration of error functions ldapcontrol.c was missing include of constants.h that defines LDAPerr() and LDAPerror(). Signed-off-by: Christian Heimes --- Modules/ldapcontrol.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/ldapcontrol.c b/Modules/ldapcontrol.c index b76d33c..7d8fbe3 100644 --- a/Modules/ldapcontrol.c +++ b/Modules/ldapcontrol.c @@ -4,6 +4,7 @@ #include "LDAPObject.h" #include "ldapcontrol.h" #include "berval.h" +#include "constants.h" #include "lber.h"