summaryrefslogtreecommitdiffstats
path: root/lib/libssl/d1_both.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2015-09-11 18:08:21 +0000
committerjsing <jsing@openbsd.org>2015-09-11 18:08:21 +0000
commit73a156d56252d7ee0f9c37caeaea2286ab94926c (patch)
tree2c5735e0d1155ae8d0cdd16feca4bd5bf65df09e /lib/libssl/d1_both.c
parentfix unchecked mallocs - coverity 130454 and 130455 (diff)
downloadwireguard-openbsd-73a156d56252d7ee0f9c37caeaea2286ab94926c.tar.xz
wireguard-openbsd-73a156d56252d7ee0f9c37caeaea2286ab94926c.zip
Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a
ssl3_ prefix. ok beck@
Diffstat (limited to 'lib/libssl/d1_both.c')
-rw-r--r--lib/libssl/d1_both.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/d1_both.c b/lib/libssl/d1_both.c
index dd67028a38d..448bd76fd0d 100644
--- a/lib/libssl/d1_both.c
+++ b/lib/libssl/d1_both.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: d1_both.c,v 1.37 2015/09/11 16:28:37 jsing Exp $ */
+/* $OpenBSD: d1_both.c,v 1.38 2015/09/11 18:08:21 jsing Exp $ */
/*
* DTLS implementation written by Nagendra Modadugu
* (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -363,7 +363,7 @@ dtls1_do_write(SSL *s, int type)
xlen = ret - DTLS1_HM_HEADER_LENGTH;
}
- ssl3_finish_mac(s, p, xlen);
+ tls1_finish_mac(s, p, xlen);
}
if (ret == s->init_num) {
@@ -444,7 +444,7 @@ again:
p -= DTLS1_HM_HEADER_LENGTH;
msg_len += DTLS1_HM_HEADER_LENGTH;
- ssl3_finish_mac(s, p, msg_len);
+ tls1_finish_mac(s, p, msg_len);
if (s->msg_callback)
s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, p, msg_len,
s, s->msg_callback_arg);