From: Eric Covener Date: Fri, 27 Sep 2024 13:07:26 +0000 (+0000) Subject: *) mod_ldap: Add a hint to install the apr_ldap module on init failure. X-Git-Tag: 2.4.63-candidate~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67982b79d9de53da783ebc69d23975279134b400;p=thirdparty%2Fapache%2Fhttpd.git *) mod_ldap: Add a hint to install the apr_ldap module on init failure. trunk patch: http://svn.apache.org/r1914038 2.4.x patch: svn merge -c r1914038 ^/httpd/httpd/trunk . +1: minfrin, covener, rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1920978 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index 8c9e58717d2..4747d826ae2 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -350,7 +350,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); }