From: phk Date: Thu, 7 Sep 2006 10:14:43 +0000 (+0000) Subject: Missing commit message from previous commit: X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a9abb35d8d6c6f29bcab65512797f6845f65446;p=varnish Missing commit message from previous commit: Fix a logic bug which allowed storage objects to be trampled on: the last bucket may contain object smaller than we want. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@947 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/storage_file.c b/varnish-cache/bin/varnishd/storage_file.c index 834d121a..4d473645 100644 --- a/varnish-cache/bin/varnishd/storage_file.c +++ b/varnish-cache/bin/varnishd/storage_file.c @@ -288,7 +288,9 @@ smf_init(struct stevedore *parent, const char *spec) smf_initfile(sc, size, 1); } -/*--------------------------------------------------------------------*/ +/*-------------------------------------------------------------------- + * XXX: Temporary sanity checker + */ static void phk(struct smf_sc *sc, struct smf *sp)