Merge 0.6->0.7

This commit is contained in:
Waqas Hussain 2010-05-07 16:17:48 +05:00
commit cfb093a9f4
2 changed files with 4 additions and 2 deletions

View file

@ -85,9 +85,10 @@ function console_listener.onincoming(conn, data)
session.env._ = data;
local chunk, err = loadstring("return "..data);
local chunkname = "=console";
local chunk, err = loadstring("return "..data, chunkname);
if not chunk then
chunk, err = loadstring(data);
chunk, err = loadstring(data, chunkname);
if not chunk then
err = err:gsub("^%[string .-%]:%d+: ", "");
err = err:gsub("^:%d+: ", "");

View file

@ -82,6 +82,7 @@ local function write_pidfile()
end
pidfile = module:get_option("pidfile");
if pidfile then
local err;
local mode = stat(pidfile) and "r+" or "w+";
pidfile_handle, err = io.open(pidfile, mode);
if not pidfile_handle then