diff options
author | Matt Caswell <matt@openssl.org> | 2014-12-04 09:22:50 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2014-12-04 14:21:50 +0000 |
commit | fcabfc66aeade294c06259c885d4df1eab06b86c (patch) | |
tree | 05726596bb70d6aff15d05da8d8c8b772093125c | |
parent | 984457303992ae714062b9a8141135badb4970ad (diff) | |
download | openssl-new-fcabfc66aeade294c06259c885d4df1eab06b86c.tar.gz |
Remove incorrect code inadvertently introduced through commit 59669b6ab.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Conflicts:
ssl/d1_lib.c
-rw-r--r-- | ssl/d1_lib.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c index 39058577e2..14337b31a4 100644 --- a/ssl/d1_lib.c +++ b/ssl/d1_lib.c @@ -280,10 +280,6 @@ long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg) /* Just one protocol version is supported so far; * fail closed if the version is not as expected. */ return s->version == DTLS_MAX_VERSION; - - /* Just one protocol version is supported so far; - * fail closed if the version is not as expected. */ - return s->version == DTLS_MAX_VERSION; case DTLS_CTRL_SET_LINK_MTU: if (larg < (long)dtls1_link_min_mtu()) return 0; |