Commit 67dd8c79 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Do not use magic values in VSL.VXID field

parent 92a477ac
......@@ -765,7 +765,7 @@ VPX_Send_Proxy(int fd, int version, const struct sess *sp)
VSB_quote(vsb2, VSB_data(vsb), VSB_len(vsb),
version == 2 ? VSB_QUOTE_HEX : 0);
AZ(VSB_finish(vsb2));
VSL(SLT_Debug, 999, "PROXY_HDR %s", VSB_data(vsb2));
VSL(SLT_Debug, 0, "PROXY_HDR %s", VSB_data(vsb2));
VSB_destroy(&vsb2);
VSB_fini(vsb);
return (r);
......
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