mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.x509: Fix recording of CommonNames in get_identities
Don't worry, this function is not used by anything yet, this isn't a security issue. It'll be used by Prosody to pick the correct certificate for itself in the future. The `names` multitable is a collection of (name, service) pairs but it put them in the wrong order here.
This commit is contained in:
parent
a55d83ceb6
commit
5ba23c972b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue