Skip to content

Commit

Permalink
*) mod_ldap: Add a hint to install the apr_ldap module on init failure.
Browse files Browse the repository at this point in the history
      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
  • Loading branch information
covener committed Sep 27, 2024
1 parent cbf81b4 commit 67982b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ldap/util_ldap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 67982b7

Please sign in to comment.