Update of /cvsroot/mod-c/ehtml/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6300/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.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** Request.cpp 1 Dec 2006 14:47:29 -0000 1.23
--- Request.cpp 1 Dec 2006 14:49:20 -0000 1.24
***************
*** 245,252 ****
if (*end != '\0') {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, RequestContext->r->server,
! "Invalid content length header value \"%s\"", tmp->value);
} else if (clen > LONG_MAX) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, RequestContext->r->server,
! "Content length header value \"%s\" too long", tmp->value);
} else {
ContentLength = clen;
--- 245,252 ----
if (*end != '\0') {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, RequestContext->r->server,
! "Invalid content length header value \"%s\"", tmp->val);
} else if (clen > LONG_MAX) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, RequestContext->r->server,
! "Content length header value \"%s\" too long", tmp->val);
} else {
ContentLength = clen;
|