-*- coding: utf-8 -*-
Changes with Apache 2.5.1
+ *) mod_proxy_html: fix handling of <meta http-equiv> elements.
+ PR 58121. [Nick Kew]
+
*) mod_md: fixed backward compatibility to old <ManagedDomain configuration.
Add higher level WARNING log when initial request to ACME server fails, mentioning
some advice. [Stefan Eissing]
while (!apr_isalpha(*++p));
for (q = p; apr_isalnum(*q) || (*q == '-'); ++q);
header = apr_pstrndup(r->pool, p, q-p);
- if (ap_cstr_casecmpn(header, "Content-", 8)) {
+ if (!ap_cstr_casecmpn(header, "Content-Type", 12)) {
+ ret = apr_palloc(r->pool, sizeof(meta));
+ ret->start = offs+pmatch[0].rm_so;
+ ret->end = offs+pmatch[0].rm_eo;
+ }
+ else {
/* find content=... string */
p = apr_strmatch(seek_content, buf+offs+pmatch[0].rm_so,
pmatch[0].rm_eo - pmatch[0].rm_so);
}
}
}
- else if (!ap_cstr_casecmpn(header, "Content-Type", 12)) {
- ret = apr_palloc(r->pool, sizeof(meta));
- ret->start = offs+pmatch[0].rm_so;
- ret->end = offs+pmatch[0].rm_eo;
- }
if (header && content) {
#ifndef GO_FASTER
ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r,