Fix spurious warnings on database save.

This commit is contained in:
Diego Martínez 2015-11-01 14:04:33 -03:00
parent 5d91fb66ad
commit 2903f6ae5a
1 changed files with 6 additions and 2 deletions

View File

@ -283,8 +283,12 @@ local function save_db()
local f, e = io.open(DB_FILENAME, "wt")
db.timestamp = os.time()
if f then
local ok = f:write(xban.serialize(db))
WARNING("Unable to save database: %s", "Write failed")
local ok, err = f:write(xban.serialize(db))
if not ok then
WARNING("Unable to save database: %s", err)
end
else
WARNING("Unable to save database: %s", e)
end
if f then f:close() end
return