summaryrefslogtreecommitdiffstats
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:33:00 +0200
commit87728c682995d0575b52a5a19d69405bb764e76e (patch)
treeaad00755e8a3edd5cbc7662322113a8258ecc71b /apps
parentcbacc6f7e96b2d6d6d2ae3c1984ca7df439fe4c5 (diff)
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> (cherry picked from commit bc776510982b3768761d32c1160e79cb45a561c3)
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 b1dd97038f..566d547653 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -1321,6 +1321,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},