diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-28 17:31:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-28 17:31:24 +0200 |
commit | ba5133a97723367212b65a9c27cc91c74928f394 (patch) | |
tree | e1a756b054eef668fc63ec4d44e4a3c9a4ff654e | |
parent | e7a2ecb01e6c11b3348fc92d2c30d23b4e6b1053 (diff) | |
download | prosody-ba5133a97723367212b65a9c27cc91c74928f394.tar.gz prosody-ba5133a97723367212b65a9c27cc91c74928f394.zip |
util.datamanager: Rearrange locals
-rw-r--r-- | util/datamanager.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua index b2a5fa0e..2ed672e5 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -223,8 +223,7 @@ local function append(username, host, datastore, ext, data) if type(data) ~= "string" then return; end local filename = getpath(username, host, datastore, ext, true); - local ok; - local f, msg, errno = io_open(filename, "r+"); + local f = io_open(filename, "r+"); if not f then return atomic_store(filename, data); -- File did probably not exist, let's create it @@ -232,7 +231,7 @@ local function append(username, host, datastore, ext, data) local pos = f:seek("end"); - ok, msg = atomic_append(f, data); + local ok, msg = atomic_append(f, data); if not ok then f:close(); |