summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-03-31 13:24:04 +0000
committerRichard Levitte <levitte@openssl.org>2003-03-31 13:24:04 +0000
commit54e73364f1e71873bd25def5d137aecec6d276a4 (patch)
tree979ea34bcbc4f6008c45879323ea2db167866087 /crypto/x509v3
parentc6b220d933a304497abedf17035ddb2951630d93 (diff)
Don't feil when indent is 0.
PR: 559
Diffstat (limited to 'crypto/x509v3')
-rw-r--r--crypto/x509v3/v3_prn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_prn.c b/crypto/x509v3/v3_prn.c
index aeaf6170fe..754808b625 100644
--- a/crypto/x509v3/v3_prn.c
+++ b/crypto/x509v3/v3_prn.c
@@ -178,7 +178,7 @@ int X509V3_extensions_print(BIO *bp, char *title, STACK_OF(X509_EXTENSION) *exts
ASN1_OBJECT *obj;
X509_EXTENSION *ex;
ex=sk_X509_EXTENSION_value(exts, i);
- if (BIO_printf(bp,"%*s",indent, "") <= 0) return 0;
+ if (indent && BIO_printf(bp,"%*s",indent, "") <= 0) return 0;
obj=X509_EXTENSION_get_object(ex);
i2a_ASN1_OBJECT(bp,obj);
j=X509_EXTENSION_get_critical(ex);