diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-03-05 18:35:02 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-03-05 18:35:02 +0000 |
commit | f3d2b07f3f93458d5b5c348af576c7d2f317f16e (patch) | |
tree | c58364b5a626dd3ebe79dc4c3b37a73bd0e1076d /core | |
parent | 651f61921bc5a867fdba3337ae7541fa4feccf7d (diff) | |
parent | a201db970b44ac05204b19aa1c3fa973ea6e2e2a (diff) | |
download | prosody-f3d2b07f3f93458d5b5c348af576c7d2f317f16e.tar.gz prosody-f3d2b07f3f93458d5b5c348af576c7d2f317f16e.zip |
Merge with 0.7
Diffstat (limited to 'core')
-rw-r--r-- | core/certmanager.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index c2db63fe..fa920b91 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -3,7 +3,7 @@ local log = require "util.logger".init("certmanager"); local ssl = ssl; local ssl_newcontext = ssl and ssl.newcontext; -local setmetatable = setmetatable; +local setmetatable, tostring = setmetatable, tostring; local prosody = prosody; @@ -39,8 +39,10 @@ function create_context(host, mode, config) reason = "Check that the path is correct, and the file exists."; elseif reason == "system lib" then reason = "Previous error (see logs), or other system error."; + elseif reason == "(null)" or not reason then + reason = "Check that the file exists and the permissions are correct"; else - reason = "Reason: "..tostring(reason or "unknown"):lower(); + reason = "Reason: "..tostring(reason):lower(); end log("error", "SSL/TLS: Failed to load %s: %s", file, reason); else |