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:58:40 +0200
commit59196250cb45ecd128d2f8bbc47de612167606d3 (patch)
tree87629f973c88b5f3da5fe0651549bad9d30c45af /include
parent48320997b49b07b5abadec89c7fbe5d5f3d41da4 (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)
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 86b0d936e0..8d6db8f066 100644
--- a/include/internal/der.h
+++ b/include/internal/der.h
@@ -78,7 +78,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,