cert_flags is unsigned
authorDr. Stephen Henson <steve@openssl.org>
Tue, 3 Jul 2012 14:54:59 +0000 (14:54 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 3 Jul 2012 14:54:59 +0000 (14:54 +0000)
apps/s_client.c
apps/s_server.c

index 60776480de3601b161d905827ae51d778b5c1e32..a8383626faf92d2d65d3116b2f0e052823aba01d 100644 (file)
@@ -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;
index 17ef2eabb6a9805d5055a8d165d32ec1b70a602b..8ea916d6e164d92f5a52483514ec5815a56ac11d 100644 (file)
@@ -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;