diff options
author | Steven Barth <steven@midlink.org> | 2008-06-25 18:33:38 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-06-25 18:33:38 +0000 |
commit | 7d0b17c7d3b344a1cdb1e12e281057036e433a2e (patch) | |
tree | 7c94d728824c4d7033fcd2e15dc970c9ee51c734 /libs/httpd/luasrc/httpd.lua | |
parent | e0e498313064c9664d5f86d336d87233ec2792a5 (diff) |
* libs/httpd: Fixed typos
Diffstat (limited to 'libs/httpd/luasrc/httpd.lua')
-rw-r--r-- | libs/httpd/luasrc/httpd.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/httpd/luasrc/httpd.lua b/libs/httpd/luasrc/httpd.lua index 050e03ec2b..f471e6b0cc 100644 --- a/libs/httpd/luasrc/httpd.lua +++ b/libs/httpd/luasrc/httpd.lua @@ -98,7 +98,7 @@ end function Daemon.kill_timedout(self) local now = os.time() - for k, v in pairs(self.threads) do + for sock, thread in pairs(self.threads) do if os.difftime(now, thread:touched()) > self.timeout then self.threads[sock] = nil self.threadc = self.threadc - 1 |