Commit 2412c2ef authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't complain about unrecognized <! sequences, just treat them like

any other <...>


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2178 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 8f453990
......@@ -405,16 +405,6 @@ esi_parse(struct esi_work *ew)
continue;
}
if (p[1] == '!') {
/*
* Unrecognized <! sequence, ignore
*/
esi_error(ew, p, i,
"XML 1.0 Unknown <! sequence");
p += 2;
continue;
}
/* Find end of this element */
for (q = p + 1; q < t.e && *q != '>'; q++)
continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment