diff options
author | jsing <> | 2015-09-11 16:28:37 +0000 |
---|---|---|
committer | jsing <> | 2015-09-11 16:28:37 +0000 |
commit | 396c0de2b029bf62cad52ca0c26f6652679681ad (patch) | |
tree | 07de9f4ea223bdb360a6ea9a6ca3786e496a5fbd /src/lib/libssl/d1_clnt.c | |
parent | 17940a7d2ce479d9b1d953966cf5889735aa9714 (diff) | |
download | openbsd-396c0de2b029bf62cad52ca0c26f6652679681ad.tar.gz openbsd-396c0de2b029bf62cad52ca0c26f6652679681ad.tar.bz2 openbsd-396c0de2b029bf62cad52ca0c26f6652679681ad.zip |
Replace dtls1_send_finished() with ssl3_send_finished() - they're now
both essentially the same (in fact DTLS benefits from improvements
previously made to the ssl3_send_finished() function).
ok beck@
Diffstat (limited to 'src/lib/libssl/d1_clnt.c')
-rw-r--r-- | src/lib/libssl/d1_clnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/d1_clnt.c b/src/lib/libssl/d1_clnt.c index 5a755c3bbe..f5745b1e7d 100644 --- a/src/lib/libssl/d1_clnt.c +++ b/src/lib/libssl/d1_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_clnt.c,v 1.50 2015/09/10 17:57:50 jsing Exp $ */ | 1 | /* $OpenBSD: d1_clnt.c,v 1.51 2015/09/11 16:28:37 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -457,7 +457,7 @@ dtls1_connect(SSL *s) | |||
457 | case SSL3_ST_CW_FINISHED_B: | 457 | case SSL3_ST_CW_FINISHED_B: |
458 | if (!s->hit) | 458 | if (!s->hit) |
459 | dtls1_start_timer(s); | 459 | dtls1_start_timer(s); |
460 | ret = dtls1_send_finished(s, | 460 | ret = ssl3_send_finished(s, |
461 | SSL3_ST_CW_FINISHED_A, SSL3_ST_CW_FINISHED_B, | 461 | SSL3_ST_CW_FINISHED_A, SSL3_ST_CW_FINISHED_B, |
462 | s->method->ssl3_enc->client_finished_label, | 462 | s->method->ssl3_enc->client_finished_label, |
463 | s->method->ssl3_enc->client_finished_label_len); | 463 | s->method->ssl3_enc->client_finished_label_len); |