aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/s3_pkt.c
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2008-10-13 06:45:59 +0000
committerLutz Jänicke <jaenicke@openssl.org>2008-10-13 06:45:59 +0000
commitb8dfde2a362a4a4cb1f102674704972471385a87 (patch)
treeeb587ed699795248ee0152335d143071b4357cf3 /ssl/s3_pkt.c
parent570006f3a2b327d6092566f0a45265251e393823 (diff)
downloadopenssl-b8dfde2a362a4a4cb1f102674704972471385a87.tar.gz
Remove the DTLS1_BAD_VER thing from 0.9.9-dev. It is present in 0.9.8
but has been omitted from HEAD (0.9.9), see commit http://cvs.openssl.org/chngview?cn=16627 by appro.
Diffstat (limited to 'ssl/s3_pkt.c')
-rw-r--r--ssl/s3_pkt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c
index 1d6760e515..561ba5cf25 100644
--- a/ssl/s3_pkt.c
+++ b/ssl/s3_pkt.c
@@ -829,8 +829,7 @@ int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
return(s->s3->wpend_ret);
}
else if (i <= 0) {
- if (s->version == DTLS1_VERSION ||
- s->version == DTLS1_BAD_VER) {
+ if (s->version == DTLS1_VERSION) {
/* For DTLS, just drop it. That's kind of the wh
ole
point in using a datagram service */