Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/experimental/sslheaders/expand.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ x509_expand_notafter(X509 *x509, BIO *bio)
ASN1_TIME_print(bio, time);
}

static const std::array<x509_expansion, SSL_HEADERS_FIELD_MAX> expansions = {{
static const std::array<x509_expansion, SSL_HEADERS_FIELD_MAX> expansions = {
x509_expand_none, // SSL_HEADERS_FIELD_NONE
x509_expand_certificate, // SSL_HEADERS_FIELD_CERTIFICATE
x509_expand_subject, // SSL_HEADERS_FIELD_SUBJECT
Expand All @@ -114,7 +114,7 @@ static const std::array<x509_expansion, SSL_HEADERS_FIELD_MAX> expansions = {{
x509_expand_signature, // SSL_HEADERS_FIELD_SIGNATURE
x509_expand_notbefore, // SSL_HEADERS_FIELD_NOTBEFORE
x509_expand_notafter, // SSL_HEADERS_FIELD_NOTAFTER
}};
};

bool
SslHdrExpandX509Field(BIO *bio, X509 *x509, ExpansionField field)
Expand Down