From: phk Date: Sat, 21 Jun 2008 18:55:42 +0000 (+0000) Subject: editor-bogon: add missing ')' X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e59d35fee11a6617b7326ac1bf262faf3d3d5e33;p=varnish editor-bogon: add missing ')' git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2759 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/rfc2616.c b/varnish-cache/bin/varnishd/rfc2616.c index 52762aa9..990b05bf 100644 --- a/varnish-cache/bin/varnishd/rfc2616.c +++ b/varnish-cache/bin/varnishd/rfc2616.c @@ -112,7 +112,7 @@ RFC2616_Ttl(const struct sess *sp, const struct http *hp, struct object *obj) u1 = u2 = 0; if ((http_GetHdrField(hp, H_Cache_Control, "s-maxage", &p) || http_GetHdrField(hp, H_Cache_Control, "max-age", &p)) && - p != NULL { + p != NULL) { u1 = strtoul(p, NULL, 0); u2 = 0; if (http_GetHdr(hp, H_Age, &p)) {