summaryrefslogtreecommitdiffstats
path: root/modules/aaa
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2020-04-16 17:07:34 +0200
committerJoe Orton <jorton@apache.org>2020-04-16 17:07:34 +0200
commitb824e8e657ca26424782f0156ed303558a6b8650 (patch)
tree1f03d1a083e3ee41a58e381cfc60faf8b97c59a8 /modules/aaa
parentAdd missing pool tags to help debugging. (diff)
downloadapache2-b824e8e657ca26424782f0156ed303558a6b8650.tar.xz
apache2-b824e8e657ca26424782f0156ed303558a6b8650.zip
* modules/aaa/mod_authnz_ldap.c (build_request_config): Fix typo.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876609 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa')
-rw-r--r--modules/aaa/mod_authnz_ldap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_authnz_ldap.c b/modules/aaa/mod_authnz_ldap.c
index 5ba21e04db..08f5fa1bc9 100644
--- a/modules/aaa/mod_authnz_ldap.c
+++ b/modules/aaa/mod_authnz_ldap.c
@@ -481,7 +481,7 @@ static authn_ldap_request_t* build_request_config(request_rec *r)
(authn_ldap_request_t *)apr_pcalloc(r->pool, sizeof(authn_ldap_request_t));
ap_set_module_config(r->request_config, &authnz_ldap_module, req);
apr_pool_create(&(req->ldc_pool), r->pool);
- apr_pool_tag(req->ldc_pool, "authn_ldap_req_ldc"):
+ apr_pool_tag(req->ldc_pool, "authn_ldap_req_ldc");
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01740)
"ldap authorize: Creating LDAP req structure");
return req;