Commit 612a58b3 authored by Yann Ylavic's avatar Yann Ylavic
Browse files

Merge r1813991 from trunk:

Save a few bytes in the conf pool when handling 'ProxyHTMLDoctype' directive with a user defined  FPI


Submitted by: jailletc36
Reviewed by: jailletc36, niq, jim


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1820798 13f79535-47bb-0310-9956-ffa450edef68
parent d199d0dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1133,7 +1133,7 @@ static const char *set_doctype(cmd_parms *cmd, void *CFG,
        cfg->doctype = fpi_html5;
    }
    else {
        cfg->doctype = apr_pstrdup(cmd->pool, t);
        cfg->doctype = t;
        if (l && ((l[0] == 'x') || (l[0] == 'X')))
            cfg->etag = xhtml_etag;
        else