svn commit: r541954 - in head/security/distcache: . files

Alexey Dokuchaev danfe at FreeBSD.org
Sat Jul 11 08:07:07 UTC 2020


Author: danfe
Date: Sat Jul 11 08:07:07 2020
New Revision: 541954
URL: https://svnweb.freebsd.org/changeset/ports/541954

Log:
  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

Modified:
  head/security/distcache/Makefile
  head/security/distcache/files/patch-ssl__swamp__utils.c

Modified: head/security/distcache/Makefile
==============================================================================
--- head/security/distcache/Makefile	Sat Jul 11 07:53:20 2020	(r541953)
+++ head/security/distcache/Makefile	Sat Jul 11 08:07:07 2020	(r541954)
@@ -38,6 +38,6 @@ post-install-DOCS-on:
 	(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
 
 do-test:
-	@cd ${WRKSRC} && ${SH} devel/test.sh
+	@cd ${TEST_WRKSRC} && ${SH} devel/test.sh
 
 .include <bsd.port.mk>

Modified: head/security/distcache/files/patch-ssl__swamp__utils.c
==============================================================================
--- head/security/distcache/files/patch-ssl__swamp__utils.c	Sat Jul 11 07:53:20 2020	(r541953)
+++ head/security/distcache/files/patch-ssl__swamp__utils.c	Sat Jul 11 08:07:07 2020	(r541954)
@@ -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


More information about the svn-ports-all mailing list