Commit 88a93874 authored by Christophe Jaillet's avatar Christophe Jaillet
Browse files

Save a few bytes in the conf pool when handling 'ProxyHTMLDoctype' directive...

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

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1813991 13f79535-47bb-0310-9956-ffa450edef68
parent 8cd66b0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1181,7 +1181,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