changeset 2035:39774b078dde

mod_s2s_auth_dane: Correct message about not being able to support SPKI
author Kim Alvefur <zash@zash.se>
date Sun, 31 Jan 2016 12:38:51 +0100
parents 256a5e3591db
children 7ba6ed553c93
files mod_s2s_auth_dane/mod_s2s_auth_dane.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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" });