Update of /cvsroot/mod-c/ehtml/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv5790/src
Modified Files:
Request.cpp
Log Message:
* apr_table_entry_t value member is 'val', not 'value'.
Index: Request.cpp
===================================================================
RCS file: /cvsroot/mod-c/ehtml/src/Request.cpp,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** Request.cpp 1 Dec 2006 14:45:47 -0000 1.22
--- Request.cpp 1 Dec 2006 14:47:29 -0000 1.23
***************
*** 242,246 ****
// We have the content length
char* end;
! unsigned long clen = strtoul(tmp->value, &end, 10);
if (*end != '\0') {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, RequestContext->r->server,
--- 242,246 ----
// We have the content length
char* end;
! unsigned long clen = strtoul(tmp->val, &end, 10);
if (*end != '\0') {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, RequestContext->r->server,
|