X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=apps%2Fecparam.c;h=ae046f9a8df19f1731ddd42510adcfedcb3c198a;hp=06e4d660215492451e6c2cd0250c48e8f99c3a48;hb=514871099478191c10cf600cf32758e6ae781058;hpb=ea77fc33807c9fc66f10c9d6f5176f4df1adb631;ds=sidebyside diff --git a/apps/ecparam.c b/apps/ecparam.c index 06e4d66021..ae046f9a8d 100644 --- a/apps/ecparam.c +++ b/apps/ecparam.c @@ -342,7 +342,6 @@ bad: EC_builtin_curve *curves = NULL; size_t crv_len = 0; size_t n = 0; - size_t len; crv_len = EC_get_builtin_curves(NULL, 0); @@ -369,11 +368,8 @@ bad: if (sname == NULL) sname = ""; - len = BIO_printf(out, " %-10s: ", sname); - if (len + strlen(comment) > 80) - BIO_printf(out, "\n%80s\n", comment); - else - BIO_printf(out, "%s\n", comment); + BIO_printf(out, " %-10s: ", sname); + BIO_printf(out, "%s\n", comment); } OPENSSL_free(curves);