diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-03-05 14:49:56 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-03-05 14:49:56 +0000 |
commit | 0851470da34275f60ff5c0eacf8ff53193d77500 (patch) | |
tree | 7ccd376300470326faf12847efe5d8722fb4ef27 /core | |
parent | 29e84d0af11fad1c6091340978065b7586193228 (diff) | |
download | prosody-0851470da34275f60ff5c0eacf8ff53193d77500.tar.gz prosody-0851470da34275f60ff5c0eacf8ff53193d77500.zip |
certmanager: Fix nil global access (thanks Marc)
Diffstat (limited to 'core')
-rw-r--r-- | core/certmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index c2db63fe..7b7d95e4 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; |