diff options
| author | jsing <> | 2015-09-11 18:08:21 +0000 |
|---|---|---|
| committer | jsing <> | 2015-09-11 18:08:21 +0000 |
| commit | eef886f2e086646b6180a7a6f2abb0ac1375e226 (patch) | |
| tree | 378accab3864084b0135769f8d9117e86df41845 /src/lib/libssl/d1_clnt.c | |
| parent | 60dc7040a30e94a6f4027c1a0996b127c296273c (diff) | |
| download | openbsd-eef886f2e086646b6180a7a6f2abb0ac1375e226.tar.gz openbsd-eef886f2e086646b6180a7a6f2abb0ac1375e226.tar.bz2 openbsd-eef886f2e086646b6180a7a6f2abb0ac1375e226.zip | |
Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a
ssl3_ prefix.
ok beck@
Diffstat (limited to 'src/lib/libssl/d1_clnt.c')
| -rw-r--r-- | src/lib/libssl/d1_clnt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/d1_clnt.c b/src/lib/libssl/d1_clnt.c index f5745b1e7d..f45ef939ed 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.51 2015/09/11 16:28:37 jsing Exp $ */ | 1 | /* $OpenBSD: d1_clnt.c,v 1.52 2015/09/11 18:08:21 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. |
| @@ -256,7 +256,7 @@ dtls1_connect(SSL *s) | |||
| 256 | s->shutdown = 0; | 256 | s->shutdown = 0; |
| 257 | 257 | ||
| 258 | /* every DTLS ClientHello resets Finished MAC */ | 258 | /* every DTLS ClientHello resets Finished MAC */ |
| 259 | if (!ssl3_init_finished_mac(s)) { | 259 | if (!tls1_init_finished_mac(s)) { |
| 260 | ret = -1; | 260 | ret = -1; |
| 261 | goto end; | 261 | goto end; |
| 262 | } | 262 | } |
| @@ -541,7 +541,7 @@ dtls1_connect(SSL *s) | |||
| 541 | 541 | ||
| 542 | case SSL_ST_OK: | 542 | case SSL_ST_OK: |
| 543 | /* clean a few things up */ | 543 | /* clean a few things up */ |
| 544 | ssl3_cleanup_key_block(s); | 544 | tls1_cleanup_key_block(s); |
| 545 | 545 | ||
| 546 | /* If we are not 'joining' the last two packets, | 546 | /* If we are not 'joining' the last two packets, |
| 547 | * remove the buffering now */ | 547 | * remove the buffering now */ |
