aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-11-22 11:51:54 +0100
committerKim Alvefur <zash@zash.se>2014-11-22 11:51:54 +0100
commit49ba0ce08dd45d2438ddd1ee14d53da57cb9573e (patch)
treea107c6b235bdc0c90990a566f221a810ea3ffc9b /core/certmanager.lua
parent6d35997e95d6491c72dcfc4b1ecf782e7542fbe5 (diff)
downloadprosody-49ba0ce08dd45d2438ddd1ee14d53da57cb9573e.tar.gz
prosody-49ba0ce08dd45d2438ddd1ee14d53da57cb9573e.zip
certmanager, mod_tls: Return final ssl config as third return value (fix for c6caaa440e74, portmanager assumes non-falsy second return value is an error) (thanks deoren)
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 3454fcc4..7ad7b034 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -137,10 +137,8 @@ function create_context(host, mode, ...)
else
log("error", "SSL/TLS: Error initialising for %s: %s", host, err);
end
- else
- err = nil;
end
- return ctx, err or user_ssl_config;
+ return ctx, err, user_ssl_config;
end
function reload_ssl_config()