summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel Fiala <daniel@openssl.org>2022-06-20 18:40:30 +0200
committerTomas Mraz <tomas@openssl.org>2022-06-27 10:59:53 +0200
commita56ccd9ee283fec5ae0c0f4b848137c208e4e1a7 (patch)
tree01e0a0e13203a55cccc285a892f9b8db3c47909e /include
parentde2541c2806280845a6babfab4339ccb5bfca10f (diff)
der_writer: Use uint32_t instead of long.
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18615) (cherry picked from commit 59196250cb45ecd128d2f8bbc47de612167606d3)
Diffstat (limited to 'include')
-rw-r--r--include/internal/der.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/der.h b/include/internal/der.h
index a3e56d0dce..b940d127a4 100644
--- a/include/internal/der.h
+++ b/include/internal/der.h
@@ -74,7 +74,7 @@ int ossl_DER_w_precompiled(WPACKET *pkt, int tag,
size_t precompiled_n);
int ossl_DER_w_boolean(WPACKET *pkt, int tag, int b);
-int ossl_DER_w_ulong(WPACKET *pkt, int tag, unsigned long v);
+int ossl_DER_w_uint32(WPACKET *pkt, int tag, uint32_t v);
int ossl_DER_w_bn(WPACKET *pkt, int tag, const BIGNUM *v);
int ossl_DER_w_null(WPACKET *pkt, int tag);
int ossl_DER_w_octet_string(WPACKET *pkt, int tag,