1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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
This commit is contained in:
Graham Leggett
2023-11-22 12:14:02 +00:00
parent 6781ce90af
commit bcd06a1714

View File

@@ -379,7 +379,7 @@ static int uldap_connection_init(request_rec *r,
/* something really bad happened */ /* something really bad happened */
ldc->bound = 0; ldc->bound = 0;
if (NULL == ldc->reason) { 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); return(APR_EGENERAL);
} }