[Modcplusplus-devel] (gr84b8) mod_cplusplus/include cpp_request.h
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2001-11-12 16:07:20
|
Mod Cplusplus CVS committal
Author : gr84b8
Project : mod_cplusplus
Module : include
Dir : mod_cplusplus/include
Modified Files:
cpp_request.h
Log Message:
fix up support for stl strings (Submitted by: kurtb149 Kurt M. Brown)
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/cpp_request.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- cpp_request.h 2001/10/22 00:13:42 1.3
+++ cpp_request.h 2001/11/12 16:06:48 1.4
@@ -90,7 +90,7 @@
int get_basic_auth_pw(const char **sent_pw);
int rputc(int c);
- int rputs(char *string);
+ int rputs(const char *str);
int rwrite(const void *buf, int nbyte);
int rprintf(const char *fmt, ...);
int rflush();
|