Mod Cplusplus CVS committal
Author : johnksterling
Project : mod_cplusplus
Module : example
Dir : mod_cplusplus/example/handler
Modified Files:
test_handler.cpp
Log Message:
fix final warnings (which were implicit on some platforms) and make sure we always use -Wall so no matter what the default warning level is, everyone sees all warnings (they are already treated as errors).
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/handler/test_handler.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- test_handler.cpp 28 Jun 2004 02:54:44 -0000 1.14
+++ test_handler.cpp 7 Aug 2005 20:37:10 -0000 1.15
@@ -17,9 +17,6 @@
int TestHandler::handler(ApacheRequestRec *pRequest)
{
- char buf[1024 * 8];
- apr_size_t len_read;
- apr_status_t rc;
mHits++;
pRequest->content_type("application/x-httpd-cgi");
pRequest->dump();
|