ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/crypto/openssl/apps/apps.c
(Generate patch)

Comparing trunk/crypto/openssl/apps/apps.c (file contents):
Revision 11619 by laffer1, Sun Jul 8 16:21:23 2018 UTC vs.
Revision 11620 by laffer1, Sun Jul 8 16:40:18 2018 UTC

# Line 119 | Line 119
119   #include <stdio.h>
120   #include <stdlib.h>
121   #include <string.h>
122 #if !defined(OPENSSL_SYSNAME_WIN32) && !defined(NETWARE_CLIB)
123 # include <strings.h>
124 #endif
122   #include <sys/types.h>
123   #include <ctype.h>
124   #include <errno.h>
# Line 1247 | Line 1244 | int set_name_ex(unsigned long *flags, const char *arg)
1244          {"ca_default", XN_FLAG_MULTILINE, 0xffffffffL},
1245          {NULL, 0, 0}
1246      };
1247 <    return set_multi_opts(flags, arg, ex_tbl);
1247 >    if (set_multi_opts(flags, arg, ex_tbl) == 0)
1248 >        return 0;
1249 >    if ((*flags & XN_FLAG_SEP_MASK) == 0)
1250 >        *flags |= XN_FLAG_SEP_CPLUS_SPC;
1251 >    return 1;
1252   }
1253  
1254   int set_ext_copy(int *copy_type, const char *arg)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines