From: Rich Salz Date: Tue, 20 Jun 2017 18:14:48 +0000 (-0400) Subject: Ensure a space after colon in enc -v X-Git-Tag: OpenSSL_1_1_1-pre1~1274 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=05eec39505ba8af6f3c1558a26c565987707cd37;p=oweals%2Fopenssl.git Ensure a space after colon in enc -v Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/3725) --- diff --git a/apps/enc.c b/apps/enc.c index 1ff1d6bf91..49568eaa50 100644 --- a/apps/enc.c +++ b/apps/enc.c @@ -549,8 +549,8 @@ int enc_main(int argc, char **argv) ret = 0; if (verbose) { - BIO_printf(bio_err, "bytes read :%8ju\n", BIO_number_read(in)); - BIO_printf(bio_err, "bytes written:%8ju\n", BIO_number_written(out)); + BIO_printf(bio_err, "bytes read : %8ju\n", BIO_number_read(in)); + BIO_printf(bio_err, "bytes written: %8ju\n", BIO_number_written(out)); } end: ERR_print_errors(bio_err);