Update of /cvsroot/mod-c/ehtml/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6651/src
Modified Files:
Request.cpp
Log Message:
Bugfix: HeaderEntry is not a const char*, but rather a pair of const char*.
Index: Request.cpp
===================================================================
RCS file: /cvsroot/mod-c/ehtml/src/Request.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Request.cpp 23 Aug 2006 10:32:57 -0000 1.5
--- Request.cpp 11 Sep 2006 15:46:41 -0000 1.6
***************
*** 154,158 ****
if ( strncmp( "kie", _tmp + 1, 3 ) == 0 )
// We have a cookie
! HeaderCookies.push_back( ( HeaderEntry* ) _tmp );
}
// Is it Content-Length
--- 154,158 ----
if ( strncmp( "kie", _tmp + 1, 3 ) == 0 )
// We have a cookie
! HeaderCookies.push_back( ( HeaderEntry* ) tmp );
}
// Is it Content-Length
|