]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/aaa/mod_authnz_ldap.c (build_request_config): Fix typo.
authorJoe Orton <jorton@apache.org>
Thu, 16 Apr 2020 15:07:34 +0000 (15:07 +0000)
committerJoe Orton <jorton@apache.org>
Thu, 16 Apr 2020 15:07:34 +0000 (15:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876609 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_authnz_ldap.c

index 5ba21e04dbed88c74853cd11c9fcadc3e51b78f6..08f5fa1bc97c894d651c98d998445f6a151503bc 100644 (file)
@@ -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;