[master] 2955f0b Wrap a line

Poul-Henning Kamp phk at varnish-cache.org
Sun Dec 25 15:36:50 CET 2011


commit 2955f0ba479c4e1b036c2a7b77c7381169f6b348
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Sun Dec 25 14:36:42 2011 +0000

    Wrap a line

diff --git a/bin/varnishd/cache/cache_vrt.c b/bin/varnishd/cache/cache_vrt.c
index da50c44..67875bd 100644
--- a/bin/varnishd/cache/cache_vrt.c
+++ b/bin/varnishd/cache/cache_vrt.c
@@ -61,7 +61,8 @@ VRT_error(const struct sess *sp, unsigned code, const char *reason)
 	if (code < 100 || code > 999)
 		code = 503;
 	sp->req->err_code = (uint16_t)code;
-	sp->req->err_reason = reason ? reason : http_StatusMessage(sp->req->err_code);
+	sp->req->err_reason =
+	    reason ? reason : http_StatusMessage(sp->req->err_code);
 }
 
 /*--------------------------------------------------------------------*/



More information about the varnish-commit mailing list