[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Mon Jun 20 13:25:33 UTC 2016
The branch master has been updated
via fb0303f3ce713d1aad72b6711cc96a6cb5120d82 (commit)
from 9267c11bb5d408e43482173794f08a3c8472afba (commit)
- Log -----------------------------------------------------------------
commit fb0303f3ce713d1aad72b6711cc96a6cb5120d82
Author: Jiri Horky <jiri.horky at gmail.com>
Date: Sun Jun 12 14:02:20 2016 -0400
RT3136: Remove space after issuer/subject
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/x509.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/x509.c b/apps/x509.c
index 4191a34..ed49c4e 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -606,9 +606,9 @@ int x509_main(int argc, char **argv)
if (num) {
for (i = 1; i <= num; i++) {
if (issuer == i) {
- print_name(out, "issuer= ", X509_get_issuer_name(x), nmflag);
+ print_name(out, "issuer=", X509_get_issuer_name(x), nmflag);
} else if (subject == i) {
- print_name(out, "subject= ",
+ print_name(out, "subject=",
X509_get_subject_name(x), nmflag);
} else if (serial == i) {
BIO_printf(out, "serial=");
More information about the openssl-commits
mailing list