aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-18 17:14:19 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-18 18:30:00 +0200
commitbc776510982b3768761d32c1160e79cb45a561c3 (patch)
treef8df91513d99c083b1666196b99b3b3b4f8efbc6 /apps
parent52832e470f5fe8c222249ae5b539aeb3c74cdb25 (diff)
downloadopenssl-bc776510982b3768761d32c1160e79cb45a561c3.tar.gz
Make it possible to have RFC2254 escapes with ASN1_STRING_print_ex()
Also adds 'esc_2254' to the possible command line name options RT#1466 Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/apps.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/apps.c b/apps/apps.c
index b41acced7b..37f423b909 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -985,6 +985,7 @@ int set_name_ex(unsigned long *flags, const char *arg)
{
static const NAME_EX_TBL ex_tbl[] = {
{"esc_2253", ASN1_STRFLGS_ESC_2253, 0},
+ {"esc_2254", ASN1_STRFLGS_ESC_2254, 0},
{"esc_ctrl", ASN1_STRFLGS_ESC_CTRL, 0},
{"esc_msb", ASN1_STRFLGS_ESC_MSB, 0},
{"use_quote", ASN1_STRFLGS_ESC_QUOTE, 0},