aboutsummaryrefslogtreecommitdiff
path: root/ssl/ssl_session.cc
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2019-10-21 16:14:33 -0400
committerCQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>2019-10-21 21:06:07 +0000
commit3ba9586bc081f67903c89917f23e74a0662ba953 (patch)
tree695e1c7f7d419df114759904ec519399ef4ccc28 /ssl/ssl_session.cc
parent31f94b0bf7cd941c2a29d21b72a0e092d445b499 (diff)
downloadboringssl-3ba9586bc081f67903c89917f23e74a0662ba953.zip
boringssl-3ba9586bc081f67903c89917f23e74a0662ba953.tar.gz
boringssl-3ba9586bc081f67903c89917f23e74a0662ba953.tar.bz2
Rename a number of BUF_* functions to OPENSSL_*.
Upstream did this in 7644a9aef8932ed4d1c3f25ed776c997702982be, so align with them. Add the new OPENSSL_* names and switch all callers witihn the library to match. Keep the old BUF_* names around for compatibility. Note there were two functions where we already had an OPENSSL_* version: OPENSSL_strdup and OPENSSL_strnlen. The former now gains a NULL check to align with BUF_strdup. The latter gets deduplicated; we had two implementations. Change-Id: Ia1cd4527a752fcd62e142ed1e1d7768d323279ba Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/38425 Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: David Benjamin <davidben@google.com>
Diffstat (limited to 'ssl/ssl_session.cc')
-rw-r--r--ssl/ssl_session.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/ssl_session.cc b/ssl/ssl_session.cc
index bb04b1a..77d3f4c 100644
--- a/ssl/ssl_session.cc
+++ b/ssl/ssl_session.cc
@@ -208,7 +208,8 @@ UniquePtr<SSL_SESSION> SSL_SESSION_dup(SSL_SESSION *session, int dup_flags) {
// Copy authentication state.
if (session->psk_identity != nullptr) {
- new_session->psk_identity.reset(BUF_strdup(session->psk_identity.get()));
+ new_session->psk_identity.reset(
+ OPENSSL_strdup(session->psk_identity.get()));
if (new_session->psk_identity == nullptr) {
return nullptr;
}