aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_print.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-12-08 00:56:15 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-12-08 00:56:15 +0000
commita2121e0aeea0e0fa9944f441e1a8c417d6c0eb4c (patch)
tree4854c634ee1d7e8189ff118d9e4cfc2d07acdb3d /crypto/asn1/a_print.c
parent55ec5861c863e2fea621bc16cd2fac0c40b71cae (diff)
downloadopenssl-a2121e0aeea0e0fa9944f441e1a8c417d6c0eb4c.tar.gz
Add i2d_ASN1_PRINTABLESTRING() function, and do 'make update'
Diffstat (limited to 'crypto/asn1/a_print.c')
-rw-r--r--crypto/asn1/a_print.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/asn1/a_print.c b/crypto/asn1/a_print.c
index 9a965d379c..b7bd2bd18a 100644
--- a/crypto/asn1/a_print.c
+++ b/crypto/asn1/a_print.c
@@ -94,6 +94,9 @@ ASN1_PRINTABLESTRING *d2i_ASN1_PRINTABLESTRING(ASN1_PRINTABLESTRING **a,
{ return(M_d2i_ASN1_PRINTABLESTRING(a,pp,
l)); }
+int i2d_ASN1_PRINTABLESTRING(ASN1_PRINTABLESTRING *a, unsigned char **pp)
+ { return(M_i2d_ASN1_PRINTABLESTRING(a,pp)); }
+
int i2d_ASN1_PRINTABLE(ASN1_STRING *a, unsigned char **pp)
{ return(M_i2d_ASN1_PRINTABLE(a,pp)); }