summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_int.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-01-18 09:23:15 +0100
committerRichard Levitte <levitte@openssl.org>2000-01-18 09:23:15 +0100
commitea5e7bcf632bba51618ab9407409b24cc4df8fa0 (patch)
tree049af6d232de5289afc67161a871af7186f10d06 /crypto/x509v3/v3_int.c
parentA test script to check on the header files (diff)
downloadopenssl-ea5e7bcf632bba51618ab9407409b24cc4df8fa0.tar.xz
openssl-ea5e7bcf632bba51618ab9407409b24cc4df8fa0.zip
Avoid converting void * to a function pointer when NULL is defined as
((void *)0), by have a 0 instead.
Diffstat (limited to 'crypto/x509v3/v3_int.c')
-rw-r--r--crypto/x509v3/v3_int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_int.c b/crypto/x509v3/v3_int.c
index a2edfe5463..63c201e5f4 100644
--- a/crypto/x509v3/v3_int.c
+++ b/crypto/x509v3/v3_int.c
@@ -67,6 +67,6 @@ NID_crl_number, 0,
(X509V3_EXT_D2I)d2i_ASN1_INTEGER,
(X509V3_EXT_I2D)i2d_ASN1_INTEGER,
(X509V3_EXT_I2S)i2s_ASN1_INTEGER,
-(X509V3_EXT_S2I)NULL,
+(X509V3_EXT_S2I)0,
NULL, NULL, NULL, NULL, NULL};