Index: net/cert/x509_util_openssl.cc |
diff --git a/net/cert/x509_util_openssl.cc b/net/cert/x509_util_openssl.cc |
index d5873ca735cf62e8de5103a328a4a23067fa164f..baf7d127613ca96b233430a33438c8d0785a6b93 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(); |