aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-02-18 13:48:45 +0000
committerMatthew Wild <mwild1@gmail.com>2016-02-18 13:48:45 +0000
commit68d19b7be1bb696a565539a87d1149fd5de0bd20 (patch)
tree44abb6a49b27925fab343ec9832f95cc0388ef26 /core/certmanager.lua
parent952ba43fea2d02b6a6f077274e869280288a87cd (diff)
downloadprosody-68d19b7be1bb696a565539a87d1149fd5de0bd20.tar.gz
prosody-68d19b7be1bb696a565539a87d1149fd5de0bd20.zip
certmanager: Localize tonumber
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 978a9efc..a4c9d891 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -25,7 +25,7 @@ local ssl_newcontext = ssl.newcontext;
local new_config = require"util.sslconfig".new;
local stat = require "lfs".attributes;
-local tostring = tostring;
+local tonumber, tostring = tonumber, tostring;
local pairs = pairs;
local type = type;
local io_open = io.open;