Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make clang-format happy r=me
  • Loading branch information
Tim Taubert committed Nov 7, 2016
1 parent ee2b9ba commit eda606d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions gtests/ssl_gtest/ssl_fuzz_unittest.cc
Expand Up @@ -46,10 +46,9 @@ TEST_P(TlsConnectGeneric, Fuzz_DeterministicExporter) {
Connect();

// Export a key derived from the MS and nonces.
SECStatus rv = SSL_ExportKeyingMaterial(client_->ssl_fd(),
kLabel, strlen(kLabel),
false, NULL, 0,
out1.data(), out1.size());
SECStatus rv =
SSL_ExportKeyingMaterial(client_->ssl_fd(), kLabel, strlen(kLabel), false,
NULL, 0, out1.data(), out1.size());
EXPECT_EQ(SECSuccess, rv);

Reset();
Expand Down
4 changes: 2 additions & 2 deletions gtests/ssl_gtest/tls_filter.h
Expand Up @@ -165,14 +165,14 @@ class TlsInspectorReplaceHandshakeMessage : public TlsHandshakeFilter {
// Make a copy of the complete conversation.
class TlsConversationRecorder : public TlsRecordFilter {
public:
TlsConversationRecorder(DataBuffer &buffer) : buffer_(buffer) {}
TlsConversationRecorder(DataBuffer& buffer) : buffer_(buffer) {}

virtual PacketFilter::Action FilterRecord(const RecordHeader& header,
const DataBuffer& input,
DataBuffer* output);

private:
DataBuffer &buffer_;
DataBuffer& buffer_;
};

// Records an alert. If an alert has already been recorded, it won't save the
Expand Down

0 comments on commit eda606d

Please sign in to comment.