Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-08-03 21:37:47 +0400
committerAdam Langley <agl@google.com>2014-08-18 21:57:01 +0400
commitcc23df53da503b6095d4c8d0dd5207e90ebf4580 (patch)
tree5db85239d79f6d06d1fa1fb2f488cc1eea9f90ac /ssl/d1_srvr.c
parent6f2600199c82330240de9a7f65a801b6f606b7b3 (diff)
Remove SSL_OP_CISCO_ANYCONNECT.
I see no internal users and the existence of a THIRD version encoding complicates all version-checking logic. Also convert another version check to SSL_IS_DTLS that was missed earlier. Change-Id: I60d215f57d44880f6e6877889307dc39dbf838f7 Reviewed-on: https://boringssl-review.googlesource.com/1550 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/d1_srvr.c')
-rw-r--r--ssl/d1_srvr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ssl/d1_srvr.c b/ssl/d1_srvr.c
index 18d24704..33cd349e 100644
--- a/ssl/d1_srvr.c
+++ b/ssl/d1_srvr.c
@@ -327,8 +327,7 @@ int dtls1_accept(SSL *s)
s->s3->tmp.next_state=SSL3_ST_SR_CLNT_HELLO_A;
/* HelloVerifyRequest resets Finished MAC */
- if (s->version != DTLS1_BAD_VER)
- ssl3_init_finished_mac(s);
+ ssl3_init_finished_mac(s);
break;