brianp 01/12/16 00:50:30
Modified: modules/filters mod_include.c
Log:
Removed the comment suggesting the use of apr_table_overlap()
in add_include_vars() (because I just tried it, and it made the
function slower)
Revision Changes Path
1.169 +0 -1 httpd-2.0/modules/filters/mod_include.c
Index: mod_include.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.c,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- mod_include.c 2001/12/15 03:53:59 1.168
+++ mod_include.c 2001/12/16 08:50:30 1.169
@@ -128,7 +128,6 @@
static const char lazy_eval_sentinel;
#define LAZY_VALUE (&lazy_eval_sentinel)
-/* XXX: could use ap_table_overlap here */
static void add_include_vars(request_rec *r, char *timefmt)
{
apr_table_t *e = r->subprocess_env;
|