Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 64446 invoked by uid 500); 17 Dec 2002 19:10:18 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 64366 invoked from network); 17 Dec 2002 19:10:17 -0000 Date: Tue, 17 Dec 2002 14:09:43 -0500 (EST) From: Cliff Woolley X-X-Sender: root@bistromath.cs.virginia.edu To: dev@httpd.apache.org Subject: Re: cvs commit: httpd-2.0/modules/experimental mod_cache.c In-Reply-To: <20021217190353.GA24855@manyfish.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Tue, 17 Dec 2002, Joe Orton wrote: > On Tue, Dec 17, 2002 at 05:10:05PM -0000, Bill Stoddard wrote: > > else if (exps != NULL && exp == APR_DATE_BAD) { > > /* if a broken Expires header is present, don't cache it */ > > - reason = apr_pstrcat(p, "Broken expires header %s", exp); > > + reason = apr_psprintf(p, "Broken expires header %s", exp); > > Still not right - 'exp' is an apr_time_t, you mean 'exps' I guess? > > mod_cache.c: In function `cache_in_filter': > mod_cache.c:543: warning: format argument is not a pointer (arg 3) Oooh, yowtch... good call. I wasn't even looking at that part. --Cliff