[4.1] ca754f5 Forgot to amend previous commit

PÃ¥l Hermunn Johansen hermunn at varnish-software.com
Thu Apr 6 14:05:06 CEST 2017


commit ca754f5b6bbb24e7cc4526a2088ff180941503c6
Author: Pål Hermunn Johansen <hermunn at varnish-software.com>
Date:   Thu Apr 6 14:02:31 2017 +0200

    Forgot to amend previous commit
    
    There was a missing bracket that I fixed but forgot to amend the
    commit. Fixing with this one.

diff --git a/bin/varnishd/cache/cache_req_fsm.c b/bin/varnishd/cache/cache_req_fsm.c
index cedfe1e..f114284 100644
--- a/bin/varnishd/cache/cache_req_fsm.c
+++ b/bin/varnishd/cache/cache_req_fsm.c
@@ -154,7 +154,7 @@ cnt_deliver(struct worker *wrk, struct req *req)
 	 * age. Truncate to zero in that case).
 	 */
 	http_PrintfHeader(req->resp, "Age: %.0f",
-	    floor(fmax(0., req->t_prev - req->objcore->exp.t_origin));
+	    floor(fmax(0., req->t_prev - req->objcore->exp.t_origin)));
 
 	http_SetHeader(req->resp, "Via: 1.1 varnish-v4");
 



More information about the varnish-commit mailing list