2004-11-17 Helge Hess <helge.hess@skyrix.com>
* handler.c (_connectInstance): fixed apr_sleep for Apache 2 which now
- requires milliseconds (thanks Christophe Bernard for pointing that
+ requires microseconds (thanks Christophe Bernard for pointing that
out!)
2004-09-20 Helge Hess <helge.hess@skyrix.com>
#ifdef AP_VERSION_1
apr_sleep(delay); /* should be in seconds for Apache 1? */
#else
- apr_sleep(delay * 1000 /* in ms now! */);
+ apr_sleep(delay * 1000 * 1000 /* in microseconds now! */);
#endif
ap_log_error(__FILE__, __LINE__, APLOG_INFO, 0, r->server,