提交 fca38e35 编写于 作者: D Dr. Stephen Henson

fix signed/unsigned warning

上级 a846a7ff
......@@ -1075,7 +1075,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 ||
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册