Make the Boring tests pass
[oweals/openssl.git] / test / clienthellotest.c
index 4219598846c0cafdbbab67b4f38cfa45817ec19d..718b582ed5bc332e3a1ed500f59d780d1b14d605 100644 (file)
@@ -32,7 +32,7 @@
 int main(int argc, char *argv[])
 {
     SSL_CTX *ctx;
-    SSL *con;
+    SSL *con = NULL;
     BIO *rbio;
     BIO *wbio;
     BIO *err;
@@ -57,10 +57,7 @@ int main(int argc, char *argv[])
         testresult = 0;
         ctx = SSL_CTX_new(TLS_method());
 
-        /*
-         * This test is testing session tickets for <= TLS1.2. It isn't relevant
-         * for TLS1.3
-         */
+        /* Testing for session tickets <= TLS1.2; not relevant for 1.3 */
         if (ctx == NULL || !SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION))
             goto end;