Index: net/cert/x509_util_openssl.cc |
diff --git a/net/cert/x509_util_openssl.cc b/net/cert/x509_util_openssl.cc |
index 33897e5478b53f88cc783ef16f488c01a68cd9b5..05876b988b4f701e35504c60cf7b2f67556b050a 100644 |
--- a/net/cert/x509_util_openssl.cc |
+++ b/net/cert/x509_util_openssl.cc |
@@ -136,7 +136,7 @@ bool DerEncodeCert(X509* x509, std::string* out_der) { |
if (len < 0) |
return false; |
- uint8_t* ptr = reinterpret_cast<uint8_t*>(WriteInto(out_der, len + 1)); |
+ uint8_t* ptr = reinterpret_cast<uint8_t*>(base::WriteInto(out_der, len + 1)); |
if (i2d_X509(x509, &ptr) < 0) { |
NOTREACHED(); |
out_der->clear(); |