aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/x509.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/x509.lua b/util/x509.lua
index fe6e4b79..342dafde 100644
--- a/util/x509.lua
+++ b/util/x509.lua
@@ -266,7 +266,7 @@ local function get_identities(cert) --> map of names to sets of services
if dn.oid == oid_commonname then
local name = nameprep(dn.value);
if name and idna_to_ascii(name) then
- names:set("*", name, true);
+ names:set(name, "*", true);
end
end
end