Commit 44dabfed authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't pointlessly announce that the default #iterations s 1



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4502 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 585b78f7
......@@ -93,7 +93,8 @@ client_thread(void *priv)
if (c->repeat == 0)
c->repeat = 1;
vtc_log(vl, 2, "Started (%u iterations)", c->repeat);
if (c->repeat != 1)
vtc_log(vl, 2, "Started (%u iterations)", c->repeat);
for (u = 0; u < c->repeat; u++) {
vtc_log(vl, 3, "Connect to %s", vsb_data(vsb));
fd = VSS_open(vsb_data(vsb));
......
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