[Modcplusplus-devel] (gr84b8) mod_cplusplus/example/handler test_handler.cpp
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2002-04-21 19:13:30
|
Mod Cplusplus CVS committal
Author : gr84b8
Project : mod_cplusplus
Module : example
Dir : mod_cplusplus/example/handler
Modified Files:
test_handler.cpp
Log Message:
fix a big in the examples: not initializing mHits (Submitted by: Nathan Stitt <na...@al...>)
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/handler/test_handler.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- test_handler.cpp 17 Apr 2002 01:32:24 -0000 1.8
+++ test_handler.cpp 21 Apr 2002 19:13:27 -0000 1.9
@@ -3,6 +3,7 @@
TestHandler::TestHandler()
: ApacheHandler()
{
+ mHits = 0;
}
TestHandler::~TestHandler()
|