Mod Cplusplus CVS committal
Author : johnksterling
Project : mod_cplusplus
Module : example
Dir : mod_cplusplus/example/input_filter
Modified Files:
test_input.cpp
Log Message:
update to remove rope dependency and update test suite so it runs :)
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/input_filter/test_input.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- test_input.cpp 26 Apr 2002 18:57:00 -0000 1.11
+++ test_input.cpp 15 Aug 2003 22:46:02 -0000 1.12
@@ -47,7 +47,7 @@
return ret;
}
for(unsigned int n=0 ; n < len ; ++n) {
- if(!strncmp(&data[n], "localhost", 9))
+ if(!strncmp(&data[n], "localhost", 8))
new_buf[n]=toupper(data[n]);
else
new_buf[n] = data[n];
|