# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1459022108 0
# Node ID afa83f3ccaadbd774bcfdc843cb033d3546e474a
# Parent  a2dce746599bb6c81870543da2b4e71caaa022ca
certmanager: Explicitly tonumber() version number segments before doing arithmetic and avoid relying on implicit coercion (thanks David Favro)

diff -r a2dce746599b -r afa83f3ccaad core/certmanager.lua
--- a/core/certmanager.lua	Fri Mar 25 16:09:34 2016 +0100
+++ b/core/certmanager.lua	Sat Mar 26 19:55:08 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;