git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@102348
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 1.3.30
+ *) Forensic logging shouldn't log internal redirects.
+ [Ivan Ristic <ivanr@webkreator.com>]
+
*) Some syntax errors in mod_mime_magic's magic file can result
in a 500 error, which previously was unlogged. Now we log the
error. [Jeff Trawick]
const char *id;
hlog h;
- if (cfg->fd < 0)
+ if (cfg->fd < 0 || r->prev)
return DECLINED;
if (!(id = ap_table_get(r->subprocess_env, "UNIQUE_ID"))) {
cut -f 1 -d '|' $F > /tmp/fc-all.$$
grep + < /tmp/fc-all.$$ | cut -c2- | sort > /tmp/fc-in.$$
grep -- - < /tmp/fc-all.$$ | cut -c2- | sort > /tmp/fc-out.$$
+# use -i instead of -I for GNU xargs
join -v 1 /tmp/fc-in.$$ /tmp/fc-out.$$ | xargs -I xx egrep "^\\+xx" $F
rm /tmp/fc-all.$$ /tmp/fc-in.$$ /tmp/fc-out.$$