* [EMAIL PROTECTED] wrote:
> Index: mod_expires.c
> ===================================================================
> RCS file: /home/cvs/httpd-2.0/modules/metadata/mod_expires.c,v
> retrieving revision 1.46
> retrieving revision 1.47
> diff -u -r1.46 -r1.47
> --- mod_expires.c 2 Jun 2003 13:14:44 -0000 1.46
> +++ mod_expires.c 21 Nov 2003 23:37:05 -0000 1.47
> @@ -548,7 +548,8 @@
> expiry = conf->expiresdefault;
> }
> }
> - if (expiry != NULL) {
> + /* != '\0' covers the case where ExpiresDefault is not user
> defined. */+ if (expiry != NULL && expiry[0] != '\0') {
> set_expiration_fields(r, expiry, t);
> }
> }
Ah, would you mind to use the other patch provided in the PR? IMHO the other
one addresses more the problem than the symptom.
nd