aboutsummaryrefslogtreecommitdiff
path: root/crypto/x509v3/v3_ocsp.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-12-20 00:46:44 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-12-20 00:46:44 +0000
commit5755cab49dd5a0d69f69e07c0bd6bdba175308cf (patch)
treefa12d588216eedd56cafe085401eb225e4214ccd /crypto/x509v3/v3_ocsp.c
parent975842f9fb216e453b67c19ffe4509837fb59ccb (diff)
downloadopenssl-5755cab49dd5a0d69f69e07c0bd6bdba175308cf.zip
openssl-5755cab49dd5a0d69f69e07c0bd6bdba175308cf.tar.gz
openssl-5755cab49dd5a0d69f69e07c0bd6bdba175308cf.tar.bz2
Fixes to OCSP print code.
Don't try to print request certificates if signature is not present. Remove unnecessary test for certificates being NULL. Fix typos in printed output. Tidy up output. Fix for typo in OCSP_SERVICELOC ASN1 template. Also give a bit more info in CHANGES about the ASN1 revision.
Diffstat (limited to 'crypto/x509v3/v3_ocsp.c')
-rw-r--r--crypto/x509v3/v3_ocsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_ocsp.c b/crypto/x509v3/v3_ocsp.c
index a10bfa9..c65dbfa 100644
--- a/crypto/x509v3/v3_ocsp.c
+++ b/crypto/x509v3/v3_ocsp.c
@@ -229,7 +229,7 @@ static int i2r_ocsp_serviceloc(X509V3_EXT_METHOD *method, void *in, BIO *bp, int
OCSP_SERVICELOC *a = in;
ACCESS_DESCRIPTION *ad;
- if (BIO_printf(bp, "%*ssIissuer: ", ind, "") <= 0) goto err;
+ if (BIO_printf(bp, "%*sIssuer: ", ind, "") <= 0) goto err;
if (X509_NAME_print_ex(bp, a->issuer, 0, XN_FLAG_ONELINE) <= 0) goto err;
for (i = 0; i < sk_ACCESS_DESCRIPTION_num(a->locator); i++)
{