* core: Axe MSVC warning for http_protocol.c (issued about 128 times
with a 2.4.x build)
Submitted By: trawick
Reviewed By: covener, gsmith
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1530038 13f79535-47bb-0310-9956-
ffa450edef68
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * core: Axe MSVC warning for http_protocol.c (issued about 128 times
- with a 2.4.x build)
- trunk patch: https://svn.apache.org/r1529449
- 2.4.x: trunk patch works
- +1: trawick, covener, gsmith
-
* WinNT MPM: Follow MS docs on AcceptEx/GetAcceptExSockaddrs
trunk patch: https://svn.apache.org/r1363312
2.4.x: trunk patch works
*/
static APR_INLINE int ap_rputs(const char *str, request_rec *r)
{
- return ap_rwrite(str, strlen(str), r);
+ return ap_rwrite(str, (int)strlen(str), r);
}
/**