mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 13:07:37 +03:00
gnutls: Fix bug that commonName is always empty
This commit is contained in:
parent
388d1ca330
commit
b8df7b0880
1 changed files with 3 additions and 0 deletions
|
@ -341,6 +341,9 @@ int GnuTLSSession::tlsConnect(const std::string& hostname, TLSVersion& version,
|
|||
commonName.assign(altName, altNameLen);
|
||||
}
|
||||
}
|
||||
else {
|
||||
commonName.assign(altName, altNameLen);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!net::verifyHostname(hostname, dnsNames, ipAddrs, commonName)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue