Use default field separator.
authorDr. Stephen Henson <steve@openssl.org>
Fri, 11 Sep 2015 15:13:52 +0000 (16:13 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 11 Sep 2015 19:52:17 +0000 (20:52 +0100)
If the field separator isn't specified through -nameopt then use
XN_FLAG_SEP_CPLUS_SPC instead of printing nothing and returing an error.

PR#2397

Reviewed-by: Tim Hudson <tjh@openssl.org>
(cherry picked from commit 03706afa30aeb4407287171a9d6f9a765395d0a2)

apps/apps.c
doc/apps/x509.pod

index 7478fc379a55da980112bbcb17da402f7cdb22e8..68287b1c82f9d0866e085cefd4e559070cd4f021 100644 (file)
@@ -1352,7 +1352,11 @@ int set_name_ex(unsigned long *flags, const char *arg)
         {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
         {NULL, 0, 0}
     };
-    return set_multi_opts(flags, arg, ex_tbl);
+    if (set_multi_opts(flags, arg, ex_tbl) == 0)
+        return 0;
+    if ((*flags & XN_FLAG_SEP_MASK) == 0)
+        *flags |= XN_FLAG_SEP_CPLUS_SPC;
+    return 1;
 }
 
 int set_ext_copy(int *copy_type, const char *arg)
index a1326edeefb6f34ecdf13b4fdf27ca69488cd44a..26f71c88329500d32391578ea0906f4064f81e38 100644 (file)
@@ -539,7 +539,8 @@ very rare and their use is discouraged). The options ending in
 "space" additionally place a space after the separator to make it
 more readable. The B<sep_multiline> uses a linefeed character for
 the RDN separator and a spaced B<+> for the AVA separator. It also
-indents the fields by four characters.
+indents the fields by four characters. If no field separator is specified
+then B<sep_comma_plus_space> is used by default.
 
 =item B<dn_rev>