made readut self-contained.

This commit is contained in:
Izaya 2017-09-14 16:21:09 +10:00
parent 4477b2769c
commit 64d3958451
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ do -- so local works
end
return false
end
function os.readut()
local function readut()
local f=fs.open("/boot/sys/users.dat","rb")
if not f then return false end
local C=fs.readall(f)
@ -187,5 +187,5 @@ do -- so local works
end
return false
end
spawn("read users",os.readut)
spawn("read users",readut)
end