server-status page and ExtendedStatus enabled, for browsers which
perform charset "detection". Reported by Stefan Esser. [Joe Orton]
+ *) mod_so: Solve dev's confusion by reporting expected/seen module
+ magic signatures when failing with a 'garbled' message, and solve
+ user's confusion by pointing out 'perhaps compiled for a different
+ version of apache?'. [William Rowe]
+
*) mod_ssl: initialize thread locks before initializing the hardware
acceleration library, so the latter can make use of the former.
PR 20951. [<adunn ncipher.com>]
http://people.apache.org/~jorton/httpd-2.0.x-CVE-2007-3304.patch
+1: jorton, jim, rpluem
- * Backport 520733; more helpful LoadModule feedback, so it reads;
- Syntax error in -C/-c directive:
- API module structure 'ftp_module' in file /.../modules/mod_ftp.so
- is garbled - expected signature 41503230 but saw 41503232 -
- perhaps this is not an Apache module DSO, or was compiled
- for a different Apache version?
- http://svn.apache.org/viewvc?view=rev&rev=520733
- +1: wrowe, sctemme, rpluem
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ please place SVN revisions from trunk here, so it is easy to
identify exactly what the proposed changes are! Add all new
*
*/
if (modp->magic != MODULE_MAGIC_COOKIE) {
- return apr_pstrcat(cmd->pool, "API module structure `", modname,
- "' in file ", szModuleFile, " is garbled -"
- " perhaps this is not an Apache module DSO?", NULL);
+ return apr_psprintf(cmd->pool, "API module structure '%s' in file %s "
+ "is garbled - expected signature %08lx but saw "
+ "%08lx - perhaps this is not an Apache module DSO, "
+ "or was compiled for a different Apache version?",
+ modname, szModuleFile,
+ MODULE_MAGIC_COOKIE, modp->magic);
}
/*