mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
SSL/TLS CertificateRequest message: Address review feedback
Minor stylistic changes; see https://github.com/zeek/zeek/pull/2855 for details
This commit is contained in:
parent
b56b856da9
commit
b8d658ac77
4 changed files with 13 additions and 11 deletions
|
@ -16,8 +16,8 @@ event ssl_certificate_request(c: connection, is_client: bool, certificate_types:
|
|||
return;
|
||||
|
||||
local out: vector of string = vector();
|
||||
for ( i in certificate_authorities )
|
||||
out[i] = parse_distinguished_name(certificate_authorities[i]);
|
||||
for ( _, ca in certificate_authorities )
|
||||
out += parse_distinguished_name(ca);
|
||||
|
||||
c$ssl$requested_client_certificate_authorities = out;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue