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

cert_flags is unsigned

上级 3208fc59
...@@ -558,7 +558,7 @@ int MAIN(int, char **); ...@@ -558,7 +558,7 @@ int MAIN(int, char **);
int MAIN(int argc, char **argv) int MAIN(int argc, char **argv)
{ {
unsigned int off=0, clr=0; unsigned int off=0, clr=0;
int cert_flags=0; unsigned int cert_flags=0;
SSL *con=NULL; SSL *con=NULL;
#ifndef OPENSSL_NO_KRB5 #ifndef OPENSSL_NO_KRB5
KSSL_CTX *kctx; KSSL_CTX *kctx;
......
...@@ -960,7 +960,7 @@ int MAIN(int argc, char *argv[]) ...@@ -960,7 +960,7 @@ int MAIN(int argc, char *argv[])
int badop=0,bugs=0; int badop=0,bugs=0;
int ret=1; int ret=1;
int off=0; int off=0;
int cert_flags = 0; unsigned int cert_flags = 0;
int no_tmp_rsa=0,no_dhe=0,no_ecdhe=0,nocert=0; int no_tmp_rsa=0,no_dhe=0,no_ecdhe=0,nocert=0;
int state=0; int state=0;
const SSL_METHOD *meth=NULL; const SSL_METHOD *meth=NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册