/usr/share/lua/5.1/openssl/auxlib.lua is in lua-luaossl 20161214-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | local auxlib = {}
if _VERSION == "Lua 5.1" then
local _pairs = pairs
function auxlib.pairs(t)
if type(t) == "userdata" then
local mt = getmetatable(t)
if mt and mt.__pairs then
return mt.__pairs(t)
else
return _pairs(t)
end
end
end
else
auxlib.pairs = pairs
end
return auxlib
|