Commit 4ed191cc authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

When -b and -c given, supress "other" messages.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@822 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent f85dba8b
......@@ -48,7 +48,8 @@ h_order(void *priv, unsigned tag, unsigned fd, unsigned len, unsigned spec, cons
(void)priv;
if (!(spec & (VSL_S_CLIENT|VSL_S_BACKEND))) {
VSL_H_Print(stdout, tag, fd, len, spec, ptr);
if (!bflag && !cflag)
VSL_H_Print(stdout, tag, fd, len, spec, ptr);
return (0);
}
if (ob[fd] == NULL) {
......
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