Commit 601d90e1 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Remove superfluous vsb_printf() argument


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1385 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 580cf142
......@@ -145,7 +145,7 @@ RES_Error(struct sess *sp, int code, const char *reason)
" <BODY>\r\n");
vsb_printf(sb, " <H1>Error %03d %s</H1>\r\n", code, msg);
vsb_printf(sb, " <P>%s</P>\r\n", reason);
vsb_printf(sb, " <H3>Guru Meditation:</H3>\r\n", reason);
vsb_printf(sb, " <H3>Guru Meditation:</H3>\r\n");
vsb_printf(sb, " <P>XID: %u</P>\r\n", sp->xid);
vsb_cat(sb,
" <I><A href=\"http://www.varnish-cache.org/\">Varnish</A></I>\r\n"
......
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