From: phk Date: Mon, 16 Jun 2008 22:15:27 +0000 (+0000) Subject: Use 9081 as default server address X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2de5b222d2e944802fc8bd2e55c3f77bf57dd550;p=varnish Use 9081 as default server address git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2708 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishtest/vtc_client.c b/varnish-cache/bin/varnishtest/vtc_client.c index 8684cd3d..725f4858 100644 --- a/varnish-cache/bin/varnishtest/vtc_client.c +++ b/varnish-cache/bin/varnishtest/vtc_client.c @@ -101,7 +101,7 @@ client_new(char *name) ALLOC_OBJ(c, CLIENT_MAGIC); AN(c); c->name = name; - c->connect = ":8080"; + c->connect = ":9081"; VTAILQ_INSERT_TAIL(&clients, c, list); return (c); }