diff options
author | Michael Brown <mcb30@ipxe.org> | 2017-06-13 12:11:40 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2017-06-20 09:49:00 +0100 |
commit | e5bfa107bad45ea9e0304a74f07cc0c7fc9860ae (patch) | |
tree | d72ed864a344ac9b4b75103c1ffaa23a0e268979 /src/crypto/asn1.c | |
parent | 5b608bbfe00c352f425ebaebad7f1ba2dd41334c (diff) | |
download | ipxe-e5bfa107bad45ea9e0304a74f07cc0c7fc9860ae.tar.gz |
[crypto] Expose asn1_grow()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/crypto/asn1.c')
-rw-r--r-- | src/crypto/asn1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/asn1.c b/src/crypto/asn1.c index ff56e1f3b..549ee4d86 100644 --- a/src/crypto/asn1.c +++ b/src/crypto/asn1.c @@ -739,7 +739,7 @@ static size_t asn1_header ( struct asn1_builder_header *header, * @v extra Extra space to prepend * @ret rc Return status code */ -static int asn1_grow ( struct asn1_builder *builder, size_t extra ) { +int asn1_grow ( struct asn1_builder *builder, size_t extra ) { size_t new_len; void *new; |