summaryrefslogtreecommitdiff
path: root/security/distcache/files/patch-ssl__swamp__utils.c
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2020-07-11 08:07:07 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2020-07-11 08:07:07 +0000
commit421cdfa1b32d640c21b84e4b14b79f22b41a3405 (patch)
tree35e330169c2c8caf9d94dfb17cacb4fbf24a9d4c /security/distcache/files/patch-ssl__swamp__utils.c
parentUpdate to 3.3.0 (diff)
Minor improvements to r541400:
- Correct macro to check for is OPENSSL_NO_SSL3_METHOD, not OPENSSL_NO_SSL3 - While no-op, be formally correct and run the tests from the $TEST_WRKSRC
Notes
Notes: svn path=/head/; revision=541954
Diffstat (limited to 'security/distcache/files/patch-ssl__swamp__utils.c')
-rw-r--r--security/distcache/files/patch-ssl__swamp__utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/distcache/files/patch-ssl__swamp__utils.c b/security/distcache/files/patch-ssl__swamp__utils.c
index ab38bc962a37..1c51d95681c8 100644
--- a/security/distcache/files/patch-ssl__swamp__utils.c
+++ b/security/distcache/files/patch-ssl__swamp__utils.c
@@ -8,7 +8,7 @@
else if(!strcmp(str_toconvert, "sslv2"))
*val = SWAMP_SSLMETH_SSLv2;
+#endif
-+#ifndef OPENSSL_NO_SSL3
++#ifndef OPENSSL_NO_SSL3_METHOD
else if(!strcmp(str_toconvert, "sslv3"))
*val = SWAMP_SSLMETH_SSLv3;
+#endif