diff options
author | tb <> | 2023-06-11 05:45:20 +0000 |
---|---|---|
committer | tb <> | 2023-06-11 05:45:20 +0000 |
commit | 70aeb9007c8fa406651fbf1c8baee0f9dcac9fb9 (patch) | |
tree | 7afcbaa0061eed663aff3bfb00ffe97e6da58371 /src/usr.bin/openssl/openssl.c | |
parent | 97a013bc68d60ad211d8cdb339f38ccb4020ade6 (diff) | |
download | openbsd-70aeb9007c8fa406651fbf1c8baee0f9dcac9fb9.tar.gz openbsd-70aeb9007c8fa406651fbf1c8baee0f9dcac9fb9.tar.bz2 openbsd-70aeb9007c8fa406651fbf1c8baee0f9dcac9fb9.zip |
Unifdef ZLIB
This is very dead code: the openssl app was never compiled with -DZLIB
after January 1, 2015.
Diffstat (limited to 'src/usr.bin/openssl/openssl.c')
-rw-r--r-- | src/usr.bin/openssl/openssl.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c index 51940fdf64..9e2ba54755 100644 --- a/src/usr.bin/openssl/openssl.c +++ b/src/usr.bin/openssl/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.33 2023/04/25 16:11:02 tb Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.34 2023/06/11 05:45:20 tb 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 | * |
@@ -329,10 +329,6 @@ FUNCTION functions[] = { | |||
329 | { FUNC_TYPE_CIPHER, "sm4-ofb", enc_main }, | 329 | { FUNC_TYPE_CIPHER, "sm4-ofb", enc_main }, |
330 | { FUNC_TYPE_CIPHER, "sm4-cfb", enc_main }, | 330 | { FUNC_TYPE_CIPHER, "sm4-cfb", enc_main }, |
331 | #endif | 331 | #endif |
332 | #ifdef ZLIB | ||
333 | { FUNC_TYPE_CIPHER, "zlib", enc_main }, | ||
334 | #endif | ||
335 | |||
336 | { 0, NULL, NULL } | 332 | { 0, NULL, NULL } |
337 | }; | 333 | }; |
338 | 334 | ||