mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

For some fields, the format apparently is not consistens over OpenSSL versions. For the test, we simply skip those.
10 lines
361 B
Text
10 lines
361 B
Text
# @TEST-EXEC: bro -r $TRACES/tls1.2.trace %INPUT
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
event x509_extension(c: connection, is_orig: bool, cert:X509, extension: X509_extension_info)
|
|
{
|
|
# The formatting of CRL Distribution Points varies between OpenSSL versions. Skip it
|
|
# for the test.
|
|
if ( extension$short_name != "crlDistributionPoints" )
|
|
print extension;
|
|
}
|