projects
/
apache
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7c8ba3
)
Revert part of r1476482 which disabled fractions of seconds with r.sleep().
author
Guenter Knauf
<fuankg@apache.org>
Fri, 10 May 2013 03:37:06 +0000
(
03:37
+0000)
committer
Guenter Knauf
<fuankg@apache.org>
Fri, 10 May 2013 03:37:06 +0000
(
03:37
+0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1480871
13f79535
-47bb-0310-9956-
ffa450edef68
modules/lua/lua_request.c
patch
|
blob
|
history
diff --git
a/modules/lua/lua_request.c
b/modules/lua/lua_request.c
index 81f940228dbe69ca23c03b3d64636ee8b6a2b37e..41fb79fbbdc227ae825c302f337b67342d3a6518 100644
(file)
--- a/
modules/lua/lua_request.c
+++ b/
modules/lua/lua_request.c
@@
-1574,7
+1574,7
@@
static int lua_ap_sleep(lua_State *L)
apr_interval_time_t msec;
luaL_checktype(L, 1, LUA_TNUMBER);
- msec = (lua_to
integ
er(L, 1) * 1000000);
+ msec = (lua_to
numb
er(L, 1) * 1000000);
apr_sleep(msec);
return 0;
}