summaryrefslogtreecommitdiff
path: root/apps/enc.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-06-20 14:14:48 -0400
committerRich Salz <rsalz@openssl.org>2017-06-20 14:14:48 -0400
commit05eec39505ba8af6f3c1558a26c565987707cd37 (patch)
tree891cd0a36b99a3d4d302079c4e4c7a10ba4af916 /apps/enc.c
parent26dc47f3c44c7fb4488d1becaf997737486f4922 (diff)
downloadopenssl-new-05eec39505ba8af6f3c1558a26c565987707cd37.tar.gz
Ensure a space after colon in enc -v
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3725)
Diffstat (limited to 'apps/enc.c')
-rw-r--r--apps/enc.c4
1 files changed, 2 insertions, 2 deletions
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);