From: des Date: Thu, 15 Nov 2007 14:18:39 +0000 (+0000) Subject: Whitespace cleanup X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9e9bac60a0cb526c2141f9a53370b5ed84bf13d;p=varnish Whitespace cleanup git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2252 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_response.c b/varnish-cache/bin/varnishd/cache_response.c index 2633f76a..8ab46437 100644 --- a/varnish-cache/bin/varnishd/cache_response.c +++ b/varnish-cache/bin/varnishd/cache_response.c @@ -126,10 +126,10 @@ RES_BuildHttp(struct sess *sp) http_CopyResp(sp->http, sp->obj->http); http_FilterFields(sp->wrk, sp->fd, sp->http, sp->obj->http, HTTPH_A_DELIVER); - + TIM_format(TIM_real(), time_str); http_PrintfHeader(sp->wrk, sp->fd, sp->http, "Date: %s", time_str); - + if (sp->xid != sp->obj->xid) http_PrintfHeader(sp->wrk, sp->fd, sp->http, "X-Varnish: %u %u", sp->xid, sp->obj->xid); @@ -167,7 +167,7 @@ RES_WriteObj(struct sess *sp) sp->wrk->acct.hdrbytes += WRK_Write(sp->wrk, lenbuf, -1); } - + VTAILQ_FOREACH(st, &sp->obj->store, list) { CHECK_OBJ_NOTNULL(sp, SESS_MAGIC); CHECK_OBJ_NOTNULL(st, STORAGE_MAGIC); @@ -192,7 +192,7 @@ RES_WriteObj(struct sess *sp) WRK_Write(sp->wrk, st->ptr, st->len); } assert(u == sp->obj->len); - if (sp->esis > 0) + if (sp->esis > 0) WRK_Write(sp->wrk, "\r\n", -1); } if (WRK_Flush(sp->wrk))