cert_flags is unsigned

(backport from HEAD)
This commit is contained in:
Dr. Stephen Henson 2012-12-26 14:48:05 +00:00
parent aa5c5eb4c1
commit 8546add692
2 changed files with 2 additions and 2 deletions

View File

@ -557,7 +557,7 @@ int MAIN(int, char **);
int MAIN(int argc, char **argv)
{
unsigned int off=0, clr=0;
int cert_flags=0;
unsigned int cert_flags=0;
SSL *con=NULL;
#ifndef OPENSSL_NO_KRB5
KSSL_CTX *kctx;

View File

@ -950,7 +950,7 @@ int MAIN(int argc, char *argv[])
int badop=0,bugs=0;
int ret=1;
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 state=0;
const SSL_METHOD *meth=NULL;