aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-09-27 22:48:33 +0000
committerRichard Levitte <levitte@openssl.org>2003-09-27 22:48:33 +0000
commit3c02e24bb3bfe966549ca242c36d54b985abe1b5 (patch)
treee7f282634faebab6f05df07e91dd4af428afe4d5 /crypto
parent1be02dd84277d15136ecb06fa253b83aaca9de49 (diff)
downloadopenssl-3c02e24bb3bfe966549ca242c36d54b985abe1b5.tar.gz
Change the indentation from 12 to indent+4.
PR: 657
Diffstat (limited to 'crypto')
-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 9be6c95a63..8e3b3d8670 100644
--- a/crypto/x509v3/v3_prn.c
+++ b/crypto/x509v3/v3_prn.c
@@ -184,7 +184,7 @@ int X509V3_extensions_print(BIO *bp, char *title, STACK_OF(X509_EXTENSION) *exts
j=X509_EXTENSION_get_critical(ex);
if (BIO_printf(bp,": %s\n",j?"critical":"") <= 0)
return 0;
- if(!X509V3_EXT_print(bp, ex, flag, 12))
+ if(!X509V3_EXT_print(bp, ex, flag, indent + 4))
{
BIO_printf(bp, "%*s", indent + 4, "");
M_ASN1_OCTET_STRING_print(bp,ex->value);