fix signed/unsigned warning
This commit is contained in:
parent
e53113b8ac
commit
928bd9a149
1 changed files with 1 additions and 1 deletions
|
@ -1065,7 +1065,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…
Reference in a new issue