diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/ca.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/ca.c b/src/usr.bin/openssl/ca.c index 79bb9ac8b6..2b34d29a1b 100644 --- a/src/usr.bin/openssl/ca.c +++ b/src/usr.bin/openssl/ca.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ca.c,v 1.33 2021/07/15 12:41:49 inoguchi Exp $ */ | 1 | /* $OpenBSD: ca.c,v 1.34 2021/07/20 12:04:53 inoguchi Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -880,7 +880,7 @@ ca_main(int argc, char **argv) | |||
880 | 880 | ||
881 | f = NCONF_get_string(conf, ca_config.section, ENV_NAMEOPT); | 881 | f = NCONF_get_string(conf, ca_config.section, ENV_NAMEOPT); |
882 | 882 | ||
883 | if (f) { | 883 | if (f != NULL) { |
884 | if (!set_name_ex(&nameopt, f)) { | 884 | if (!set_name_ex(&nameopt, f)) { |
885 | BIO_printf(bio_err, | 885 | BIO_printf(bio_err, |
886 | "Invalid name options: \"%s\"\n", f); | 886 | "Invalid name options: \"%s\"\n", f); |