Change error reason to match previous behaviour.
[openssl.git] / apps / ecparam.c
index a0781c525b68e4df607d77160071c6a3fc171aa8..8464c882ca0f0206f5cb0c0f1bc731080910c86c 100644 (file)
@@ -326,8 +326,9 @@ int ecparam_main(int argc, char **argv)
         if (!EC_GROUP_check(group, NULL)) {
             BIO_printf(bio_err, "failed\n");
             ERR_print_errors(bio_err);
-        } else
-            BIO_printf(bio_err, "ok\n");
+            goto end;
+        }
+        BIO_printf(bio_err, "ok\n");
 
     }