Index: crypto/hkdf_unittest.cc |
diff --git a/crypto/hkdf_unittest.cc b/crypto/hkdf_unittest.cc |
index dc369d1b94f1b48c61a01cc3cce111afbd9ccc82..bcb19c5c10d185e49764af524616870816e7c65f 100644 |
--- a/crypto/hkdf_unittest.cc |
+++ b/crypto/hkdf_unittest.cc |
@@ -82,7 +82,7 @@ TEST(HKDFTest, HKDF) { |
// We set the key_length to the length of the expected output and then take |
// the result from the first key, which is the client write key. |
- HKDF hkdf(key, salt, info, expected.size(), 0); |
+ HKDF hkdf(key, salt, info, expected.size(), 0, 0); |
ASSERT_EQ(expected.size(), hkdf.client_write_key().size()); |
EXPECT_EQ(0, memcmp(expected.data(), hkdf.client_write_key().data(), |