cert_flags is unsigned
This commit is contained in:
parent
3208fc59db
commit
657e29c199
@ -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[])
|
|||||||
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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user