diff options
author | inoguchi <> | 2022-01-11 15:05:58 +0000 |
---|---|---|
committer | inoguchi <> | 2022-01-11 15:05:58 +0000 |
commit | 4750a69f6750a96b666bda88a18e68720015a6ea (patch) | |
tree | 568c0cbb9b93e479825ba96e8bae5c59fe287316 | |
parent | d27104b7d6008474061fd17b5c5843ce56b142f6 (diff) | |
download | openbsd-4750a69f6750a96b666bda88a18e68720015a6ea.tar.gz openbsd-4750a69f6750a96b666bda88a18e68720015a6ea.tar.bz2 openbsd-4750a69f6750a96b666bda88a18e68720015a6ea.zip |
Suppress warning
-rw-r--r-- | src/usr.bin/openssl/smime.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/smime.c b/src/usr.bin/openssl/smime.c index 0783ebafa9..323bdc199f 100644 --- a/src/usr.bin/openssl/smime.c +++ b/src/usr.bin/openssl/smime.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: smime.c,v 1.13 2022/01/11 15:02:34 inoguchi Exp $ */ | 1 | /* $OpenBSD: smime.c,v 1.14 2022/01/11 15:05:58 inoguchi Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project. | 3 | * project. |
4 | */ | 4 | */ |
@@ -144,6 +144,8 @@ get_cipher_by_name(char *name) | |||
144 | else if (!strcmp(name, "rc2-128")) | 144 | else if (!strcmp(name, "rc2-128")) |
145 | return EVP_rc2_cbc(); | 145 | return EVP_rc2_cbc(); |
146 | #endif | 146 | #endif |
147 | else | ||
148 | return NULL; | ||
147 | } | 149 | } |
148 | 150 | ||
149 | static int | 151 | static int |