From: Dr. Stephen Henson Date: Tue, 3 Jul 2012 14:54:59 +0000 (+0000) Subject: cert_flags is unsigned X-Git-Tag: master-post-reformat~1774 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=657e29c1999f02b8962ccbe26faa63cbccb4ff2e;p=oweals%2Fopenssl.git cert_flags is unsigned --- diff --git a/apps/s_client.c b/apps/s_client.c index 60776480de..a8383626fa 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -558,7 +558,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; diff --git a/apps/s_server.c b/apps/s_server.c index 17ef2eabb6..8ea916d6e1 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -960,7 +960,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;