aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_prn.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-20 22:50:42 +0000
committerUlf Möller <ulf@openssl.org>1999-04-20 22:50:42 +0000
commit95dc05bc6d0dfe0f3f3681f5e27afbc3f7a35eea (patch)
tree6bdbca71df2722da6b3c27c8cc2a0b00115edaa9 /crypto/x509v3/v3_prn.c
parentf36cd05b22a587e552c97797b54fd07bc0762446 (diff)
downloadopenssl-95dc05bc6d0dfe0f3f3681f5e27afbc3f7a35eea.tar.gz
Fix lots of warnings.
Submitted by: Richard Levitte <levitte@stacken.kth.se>
Diffstat (limited to 'crypto/x509v3/v3_prn.c')
-rw-r--r--crypto/x509v3/v3_prn.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_prn.c b/crypto/x509v3/v3_prn.c
index d81f4088e0..8ddc16b7cd 100644
--- a/crypto/x509v3/v3_prn.c
+++ b/crypto/x509v3/v3_prn.c
@@ -87,7 +87,8 @@ void X509V3_EXT_val_prn(BIO *out, STACK *val, int indent, int ml)
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, int flag, int indent)
{
- char *ext_str = NULL, *p, *value = NULL;
+ char *ext_str = NULL, *value = NULL;
+ unsigned char *p;
X509V3_EXT_METHOD *method;
STACK *nval = NULL;
int ok = 1;