diff options
author | Jiri Horky <jiri.horky@gmail.com> | 2016-06-12 20:02:20 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-06-20 15:25:12 +0200 |
commit | fb0303f3ce713d1aad72b6711cc96a6cb5120d82 (patch) | |
tree | b1f2e2af1c783e16f297cecb7065432493be83ce /apps/x509.c | |
parent | Make DSA_SIG and ECDSA_SIG getters const. (diff) | |
download | openssl-fb0303f3ce713d1aad72b6711cc96a6cb5120d82.tar.xz openssl-fb0303f3ce713d1aad72b6711cc96a6cb5120d82.zip |
RT3136: Remove space after issuer/subject
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/x509.c')
-rw-r--r-- | apps/x509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/x509.c b/apps/x509.c index 4191a345bb..ed49c4e8fb 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="); |