summaryrefslogtreecommitdiffstats
path: root/crypto/asn1
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2004-09-13 22:33:56 +0000
committerDr. Stephen Henson <steve@openssl.org>2004-09-13 22:33:56 +0000
commitbd9327baa9345d89cbb543b2f34a54f994e4c252 (patch)
treec68b6303f88f86d01efbb347bff8e6f9a927d4d3 /crypto/asn1
parent6f9bafafa3ffe4c785cfb521dc130b6614b852f0 (diff)
Change values of MBSTRING_* to the form MBSTRING_FLAG|nbyte as assumed
in ASN1_STRING_to_UTF8().
Diffstat (limited to 'crypto/asn1')
-rw-r--r--crypto/asn1/asn1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/asn1.h b/crypto/asn1/asn1.h
index f7bb935e07..0df0f47621 100644
--- a/crypto/asn1/asn1.h
+++ b/crypto/asn1/asn1.h
@@ -152,10 +152,10 @@ extern "C" {
/* For use with ASN1_mbstring_copy() */
#define MBSTRING_FLAG 0x1000
+#define MBSTRING_UTF8 (MBSTRING_FLAG)
#define MBSTRING_ASC (MBSTRING_FLAG|1)
#define MBSTRING_BMP (MBSTRING_FLAG|2)
-#define MBSTRING_UNIV (MBSTRING_FLAG|3)
-#define MBSTRING_UTF8 (MBSTRING_FLAG|4)
+#define MBSTRING_UNIV (MBSTRING_FLAG|4)
struct X509_algor_st;