]> err.no Git - varnish/commitdiff
Whitespace cleanup
authordes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 15 Nov 2007 14:18:39 +0000 (14:18 +0000)
committerdes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Thu, 15 Nov 2007 14:18:39 +0000 (14:18 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2252 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache_response.c

index 2633f76a2a4fe2f8a1e9de77d7f9116bd3da6e0e..8ab464372b95a5570dd4932fc56db1d0c3b947cd 100644 (file)
@@ -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))