Merge 0.10->trunk
authorMatthew Wild <mwild1@gmail.com>
Sat, 26 Mar 2016 20:17:59 +0000
changeset 7323 3849b5187d47
parent 7321 1fa6052f3a07 (current diff)
parent 7322 afa83f3ccaad (diff)
child 7327 7e6409462f79
Merge 0.10->trunk
--- a/core/certmanager.lua	Sat Mar 26 14:54:39 2016 +0100
+++ b/core/certmanager.lua	Sat Mar 26 20:17:59 2016 +0000
@@ -36,7 +36,7 @@
 local config_path = prosody.paths.config;
 
 local luasec_major, luasec_minor = ssl._VERSION:match("^(%d+)%.(%d+)");
-local luasec_version = luasec_major * 100 + luasec_minor;
+local luasec_version = tonumber(luasec_major) * 100 + tonumber(luasec_minor);
 local luasec_has = {
 	-- TODO If LuaSec ever starts exposing these things itself, use that instead
 	cipher_server_preference = luasec_version >= 2;