diff options
author | Richard Levitte <levitte@openssl.org> | 2003-04-04 01:39:48 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-04-04 01:39:48 +0200 |
commit | 3ae70939baf60524135f7e3c47e93ad2a55e611b (patch) | |
tree | 62a88e95d778e3474bd38db0a68b67d921310b56 /crypto/x509v3/v3_prn.c | |
parent | Make %p and %# work properly, at least with pointers and floats. (diff) | |
download | openssl-3ae70939baf60524135f7e3c47e93ad2a55e611b.tar.xz openssl-3ae70939baf60524135f7e3c47e93ad2a55e611b.zip |
Correct a lot of printing calls. Remove extra arguments...
Diffstat (limited to 'crypto/x509v3/v3_prn.c')
-rw-r--r-- | crypto/x509v3/v3_prn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_prn.c b/crypto/x509v3/v3_prn.c index 754808b625..9be6c95a63 100644 --- a/crypto/x509v3/v3_prn.c +++ b/crypto/x509v3/v3_prn.c @@ -182,7 +182,7 @@ int X509V3_extensions_print(BIO *bp, char *title, STACK_OF(X509_EXTENSION) *exts obj=X509_EXTENSION_get_object(ex); i2a_ASN1_OBJECT(bp,obj); j=X509_EXTENSION_get_critical(ex); - if (BIO_printf(bp,": %s\n",j?"critical":"","") <= 0) + if (BIO_printf(bp,": %s\n",j?"critical":"") <= 0) return 0; if(!X509V3_EXT_print(bp, ex, flag, 12)) { |