From: Graham Leggett Date: Wed, 22 Nov 2023 12:14:02 +0000 (+0000) Subject: mod_ldap: Add a hint to install the apr_ldap module on init failure. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcd06a1714ad43968e925f6b3bae48143b39c2c1;p=thirdparty%2Fapache%2Fhttpd.git mod_ldap: Add a hint to install the apr_ldap module on init failure. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1914038 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index 8e508581fa5..52a12912b4d 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -379,7 +379,7 @@ static int uldap_connection_init(request_rec *r, /* something really bad happened */ ldc->bound = 0; if (NULL == ldc->reason) { - ldc->reason = "LDAP: ldap initialization failed"; + ldc->reason = "LDAP: ldap initialization failed. Make sure the apr_ldap module is installed."; } return(APR_EGENERAL); }