summaryrefslogtreecommitdiffhomepage
path: root/libs/sgi-wsapi
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-07-23 18:31:47 +0000
committerSteven Barth <steven@midlink.org>2008-07-23 18:31:47 +0000
commit59bef00fc3a9019733103661e67268f55c93ae17 (patch)
treee52b8b7e6ba4b4f33402a2c95299a073976079ef /libs/sgi-wsapi
parent7a08658fe71e3b0f6e0052709d82b515599d6767 (diff)
Fix sgi-wsapi and sgi-luci to be standards compliant
Diffstat (limited to 'libs/sgi-wsapi')
-rw-r--r--libs/sgi-wsapi/luasrc/sgi/wsapi.lua11
1 files changed, 7 insertions, 4 deletions
diff --git a/libs/sgi-wsapi/luasrc/sgi/wsapi.lua b/libs/sgi-wsapi/luasrc/sgi/wsapi.lua
index ebae9fc27..3b5302599 100644
--- a/libs/sgi-wsapi/luasrc/sgi/wsapi.lua
+++ b/libs/sgi-wsapi/luasrc/sgi/wsapi.lua
@@ -59,11 +59,14 @@ function run(wsapi_env)
end
local function iter()
- local res, id, data1, data2 = coroutine.resume(x)
- if not res or id == 5 then
+ local res, id, data = coroutine.resume(x)
+ if id == 4 then
+ return data
+ elseif id == 5 then
+ return ""
+ end
+ if coroutine.status(x) == "dead" then
return nil
- else
- return data1
end
end