# HG changeset patch # User Kim Alvefur # Date 1454240331 -3600 # Node ID 39774b078dde41b536f27456c01302bb526ef105 # Parent 256a5e3591db120363d7e5c1b4c121aec701f4b8 mod_s2s_auth_dane: Correct message about not being able to support SPKI diff -r 256a5e3591db -r 39774b078dde mod_s2s_auth_dane/mod_s2s_auth_dane.lua --- a/mod_s2s_auth_dane/mod_s2s_auth_dane.lua Tue Jan 26 19:15:00 2016 +0000 +++ b/mod_s2s_auth_dane/mod_s2s_auth_dane.lua Sun Jan 31 12:38:51 2016 +0100 @@ -60,7 +60,7 @@ module:log("debug", "The cert:issued() method is unavailable, DANE-TA and PKIX-CA can't be enabled"); end if not cert_mt.__index.pubkey then - module:log("debug", "The cert:issued() method is unavailable, the SPKI usage can't be supported"); + module:log("debug", "The cert:pubkey() method is unavailable, the SPKI usage can't be supported"); end end local configured_uses = module:get_option_set("dane_uses", { "DANE-EE", "DANE-TA" });