summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src
diff options
context:
space:
mode:
authormmcc <mmcc@openbsd.org>2015-12-23 01:50:26 +0000
committermmcc <mmcc@openbsd.org>2015-12-23 01:50:26 +0000
commitdaaa51c1b712410aacc4698df893e5dd95065329 (patch)
tree04be5d9ac2c296d9e231d5b90f11ddb9c519656c /lib/libssl/src
parentassign pointer to NULL rather than 0 (diff)
downloadwireguard-openbsd-daaa51c1b712410aacc4698df893e5dd95065329.tar.xz
wireguard-openbsd-daaa51c1b712410aacc4698df893e5dd95065329.zip
assign pointer NULL rather than 0
Diffstat (limited to 'lib/libssl/src')
-rw-r--r--lib/libssl/src/crypto/asn1/tasn_prn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/asn1/tasn_prn.c b/lib/libssl/src/crypto/asn1/tasn_prn.c
index c9fde96789f..c8601a1a895 100644
--- a/lib/libssl/src/crypto/asn1/tasn_prn.c
+++ b/lib/libssl/src/crypto/asn1/tasn_prn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tasn_prn.c,v 1.13 2015/02/14 15:15:27 miod Exp $ */
+/* $OpenBSD: tasn_prn.c,v 1.14 2015/12/23 01:50:26 mmcc Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2000.
*/
@@ -214,7 +214,7 @@ asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, const ASN1_ITEM *it,
parg.pctx = pctx;
asn1_cb = aux->asn1_cb;
} else
- asn1_cb = 0;
+ asn1_cb = NULL;
if (*fld == NULL) {
if (pctx->flags & ASN1_PCTX_FLAGS_SHOW_ABSENT) {