diff options
| author | jsing <> | 2015-09-11 16:28:37 +0000 | 
|---|---|---|
| committer | jsing <> | 2015-09-11 16:28:37 +0000 | 
| commit | 7f48619b94119e03c018bbe0da0ebeaf4d449e43 (patch) | |
| tree | 07de9f4ea223bdb360a6ea9a6ca3786e496a5fbd /src/lib/libssl/d1_clnt.c | |
| parent | e68a7329240856ae300e3a394ca92903b5cf7360 (diff) | |
| download | openbsd-7f48619b94119e03c018bbe0da0ebeaf4d449e43.tar.gz openbsd-7f48619b94119e03c018bbe0da0ebeaf4d449e43.tar.bz2 openbsd-7f48619b94119e03c018bbe0da0ebeaf4d449e43.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 '')
| -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); | 
