From: phk Date: Thu, 6 Jul 2006 21:57:41 +0000 (+0000) Subject: Always log the numeric code as "Status" X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95c7ba05ecc63fcd749f899b0a8ef4cbca121c4a;p=varnish Always log the numeric code as "Status" git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@363 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_acceptor.c b/varnish-cache/bin/varnishd/cache_acceptor.c index 1da0e2f8..bad2b851 100644 --- a/varnish-cache/bin/varnishd/cache_acceptor.c +++ b/varnish-cache/bin/varnishd/cache_acceptor.c @@ -92,7 +92,7 @@ vca_write_obj(struct worker *w, struct sess *sp) char *r; - VSL(SLT_Response, sp->fd, "%u", sp->obj->response); + VSL(SLT_Status, sp->fd, "%u", sp->obj->response); VSL(SLT_Length, sp->fd, "%u", sp->obj->len); vca_write(sp, sp->obj->header, strlen(sp->obj->header));