stas 2002/12/20 19:46:07
Modified: src/modules/perl modperl_cmd.c
. Changes
Log:
under non-threaded perl need to check whether mod_perl is running,
when modperl_vhost_is_running check is done.
Revision Changes Path
1.37 +1 -1 modperl-2.0/src/modules/perl/modperl_cmd.c
Index: modperl_cmd.c
===================================================================
RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_cmd.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- modperl_cmd.c 21 Dec 2002 02:26:02 -0000 1.36
+++ modperl_cmd.c 21 Dec 2002 03:46:07 -0000 1.37
@@ -61,7 +61,7 @@
return FALSE;
}
#else
- return TRUE;
+ return modperl_is_running();
#endif
}
1.88 +3 -0 modperl-2.0/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl-2.0/Changes,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- Changes 21 Dec 2002 02:26:02 -0000 1.87
+++ Changes 21 Dec 2002 03:46:07 -0000 1.88
@@ -10,6 +10,9 @@
=item 1.99_08-dev
+under non-threaded perl need to check whether mod_perl is running,
+when modperl_vhost_is_running check is done. [Stas]
+
fix $r->read to read all the requested amount of data if possible,
adjust the test TestApache::read to verify that [Stas]