From: phk Date: Sun, 17 Sep 2006 21:48:04 +0000 (+0000) Subject: Revert these two for now. The expiry thread doesn't have X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0da978ac72851e565dcdb0181a1eb2cc3289cc6;p=varnish Revert these two for now. The expiry thread doesn't have a worker structure. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1055 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_vcl.c b/varnish-cache/bin/varnishd/cache_vcl.c index f8c17d1c..32d6e45c 100644 --- a/varnish-cache/bin/varnishd/cache_vcl.c +++ b/varnish-cache/bin/varnishd/cache_vcl.c @@ -278,9 +278,9 @@ VCL_##func##_method(struct sess *sp) \ { \ \ sp->handling = 0; \ - WSL(sp->wrk, SLT_VCL_call, sp->fd, "%s", #func); \ + VSL(SLT_VCL_call, sp->fd, "%s", #func); \ sp->vcl->func##_func(sp); \ - WSL(sp->wrk, SLT_VCL_return, sp->fd, "%s", \ + VSL(SLT_VCL_return, sp->fd, "%s", \ vcl_handlingname(sp->handling)); \ assert(sp->handling & bitmap); \ assert(!(sp->handling & ~bitmap)); \