httpd-test's perl-framework is failing on the expires test. Am looking into it now to see what is going on, but does anyone else see this? -- justin
ExpiresDefault is busted.
The offending line is mod_expires.c:531.
t = apr_table_overlay(r->pool, notes->expfields, t);
apr_table_overlay may create a new table, so the original pointer has to be updated as well. I'm trying to figure out what the proper fix is to this. The code makes it hard to figure out what t should be reset to in a clean manner.
Using a ** might work, but that's lame. -- justin
