Fix for builds without DTLS support.

Submitted by: Brian Carlstrom
This commit is contained in:
Bodo Möller 2012-01-05 10:22:39 +00:00
parent e0b9678d7f
commit 409d2a1b71

View file

@ -1079,8 +1079,10 @@ long SSL_ctrl(SSL *s,int cmd,long larg,void *parg)
s->max_cert_list=larg;
return(l);
case SSL_CTRL_SET_MTU:
#ifndef OPENSSL_NO_DTLS1
if (larg < (long)dtls1_min_mtu())
return 0;
#endif
if (SSL_version(s) == DTLS1_VERSION ||
SSL_version(s) == DTLS1_BAD_VER)