Ensure a space after colon in enc -v
authorRich Salz <rsalz@openssl.org>
Tue, 20 Jun 2017 18:14:48 +0000 (14:14 -0400)
committerRich Salz <rsalz@openssl.org>
Tue, 20 Jun 2017 18:14:48 +0000 (14:14 -0400)
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3725)

apps/enc.c

index 1ff1d6bf9104562f240e2c769892dc73c13b7427..49568eaa508b7aa0ee2499bd4f0ee1aa1ff5e002 100644 (file)
@@ -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);