fix signed/unsigned warning
This commit is contained in:
parent
91a1d08a4c
commit
3cf0a38b3e
@ -1000,7 +1000,7 @@ long SSL_ctrl(SSL *s,int cmd,long larg,void *parg)
|
||||
s->max_cert_list=larg;
|
||||
return(l);
|
||||
case SSL_CTRL_SET_MTU:
|
||||
if (larg < dtls1_min_mtu())
|
||||
if (larg < (long)dtls1_min_mtu())
|
||||
return 0;
|
||||
|
||||
if (SSL_version(s) == DTLS1_VERSION ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user