diff options
author | Joe Orton <jorton@apache.org> | 2020-04-16 17:07:34 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2020-04-16 17:07:34 +0200 |
commit | b824e8e657ca26424782f0156ed303558a6b8650 (patch) | |
tree | 1f03d1a083e3ee41a58e381cfc60faf8b97c59a8 /modules/aaa | |
parent | Add missing pool tags to help debugging. (diff) | |
download | apache2-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.c | 2 |
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; |