https://issues.apache.org/bugzilla/show_bug.cgi?id=46500
--- Comment #2 from Rainer Jung <[email protected]> 2009-01-09 08:05:54 PST --- You can either apply the cited apr patch to the bundled apr before building httpd, or in case you are not using a system apr you can apply the following workaround to httpd 2.2.11 directly: --- server/util.c.orig +++ server/util.c @@ -2174,6 +2174,7 @@ const char *time_str; apr_int64_t tout; + errno = 0; tout = apr_strtoi64(timeout_parameter, &endp, 10); if (errno) { return errno; -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
