summaryrefslogtreecommitdiffstats
path: root/apps/pkcs12.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-17 12:04:56 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-17 12:04:56 +0000
commitc05353c50a438d86e030da82f024870358c95edb (patch)
tree076bb54dc44513e53bf0b66833123aa4f4d12608 /apps/pkcs12.c
parent73ea41607004bd39bf56730b875549f765107e95 (diff)
Rename asc2uni and uni2asc functions to avoid clashes.
Diffstat (limited to 'apps/pkcs12.c')
-rw-r--r--apps/pkcs12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/pkcs12.c b/apps/pkcs12.c
index 9c431259dd..39686b69db 100644
--- a/apps/pkcs12.c
+++ b/apps/pkcs12.c
@@ -923,7 +923,7 @@ int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,const char *name)
av = sk_ASN1_TYPE_value(attr->value.set, 0);
switch(av->type) {
case V_ASN1_BMPSTRING:
- value = uni2asc(av->value.bmpstring->data,
+ value = OPENSSL_uni2asc(av->value.bmpstring->data,
av->value.bmpstring->length);
BIO_printf(out, "%s\n", value);
OPENSSL_free(value);