fix signed/unsigned warning
This commit is contained in:
parent
872e3fd502
commit
b00fe7ce18
@ -1054,7 +1054,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