mod_saslauth: Fix read format string (thanks tmolitor)

This commit is contained in:
Matthew Wild 2023-10-24 09:23:31 +01:00
parent 7b882e4405
commit a4c91c7646

View file

@ -274,7 +274,7 @@ local function tls_server_end_point(self)
if not certfile then return end
local f = io.open(certfile);
if not f then return end
local certdata = f:read("*");
local certdata = f:read("*a");
cert = ssl.loadcertificate(certdata);
end