From: Joe Orton Date: Thu, 16 Apr 2020 15:07:34 +0000 (+0000) Subject: * modules/aaa/mod_authnz_ldap.c (build_request_config): Fix typo. X-Git-Tag: 2.5.0-alpha2-ci-test-only~1518 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b824e8e657ca26424782f0156ed303558a6b8650;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/modules/aaa/mod_authnz_ldap.c b/modules/aaa/mod_authnz_ldap.c index 5ba21e04dbe..08f5fa1bc97 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;