apps: when the 'compat' nameopt has been set, leave it be
authorRichard Levitte <levitte@openssl.org>
Thu, 31 May 2018 04:51:25 +0000 (06:51 +0200)
committerRichard Levitte <levitte@openssl.org>
Thu, 31 May 2018 09:00:56 +0000 (11:00 +0200)
XN_FLAG_COMPAT has a unique property, its zero for value.  This means
it needs special treatment; if it has been set (which can only be
determined indirectly) and set alone (*), no other flags should be
set.

(*) if any other nameopt flag has been set by the user, compatibility
mode is blown away.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6382)

apps/apps.c

index d5a6aea206ed8c094cf8d1324b33e0a615d49a6f..2740275fe5cab21f618b9f9e00817a9dea4caa9e 100644 (file)
@@ -1050,7 +1050,8 @@ int set_name_ex(unsigned long *flags, const char *arg)
     };
     if (set_multi_opts(flags, arg, ex_tbl) == 0)
         return 0;
-    if ((*flags & XN_FLAG_SEP_MASK) == 0)
+    if (*flags != XN_FLAG_COMPAT
+        && (*flags & XN_FLAG_SEP_MASK) == 0)
         *flags |= XN_FLAG_SEP_CPLUS_SPC;
     return 1;
 }