summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-05-07 14:12:38 +1000
committerPauli <pauli@openssl.org>2021-05-08 22:15:56 +1000
commit68f3fb051487581e3a424235b3d4f651cf558493 (patch)
tree8fa2c1ca1d19dda64dc51458449bc5129365d59c /apps
parenta1230dea4d255a1ea27b18af7a178fe2501e7dad (diff)
apps: remove initial newline from mac output
Fixes #13247 Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15189)
Diffstat (limited to 'apps')
-rw-r--r--apps/mac.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/mac.c b/apps/mac.c
index c722be3102..dccbb68117 100644
--- a/apps/mac.c
+++ b/apps/mac.c
@@ -181,8 +181,6 @@ opthelp:
if (out_bin) {
BIO_write(out, buf, len);
} else {
- if (outfile == NULL)
- BIO_printf(out,"\n");
for (i = 0; i < (int)len; ++i)
BIO_printf(out, "%02X", buf[i]);
if (outfile == NULL)