svn commit: r370930 - in head/net/svnup: . files

Bryan Drewery bdrewery at FreeBSD.org
Wed Oct 15 15:44:43 UTC 2014


Author: bdrewery
Date: Wed Oct 15 15:44:41 2014
New Revision: 370930
URL: https://svnweb.freebsd.org/changeset/ports/370930
QAT: https://qat.redports.org/buildarchive/r370930/

Log:
  - Allow svnup to work with TLS; SSLv3 is being disabled due to POODLE.
  
  PR:		194241
  Submitted by:	spil.oss at gmail.com
  Obtained from:	Merged in upstream
  MFH:		2014Q4

Added:
  head/net/svnup/files/
  head/net/svnup/files/patch-svnup.c   (contents, props changed)
Modified:
  head/net/svnup/Makefile

Modified: head/net/svnup/Makefile
==============================================================================
--- head/net/svnup/Makefile	Wed Oct 15 15:38:46 2014	(r370929)
+++ head/net/svnup/Makefile	Wed Oct 15 15:44:41 2014	(r370930)
@@ -2,6 +2,7 @@
 
 PORTNAME=	svnup
 PORTVERSION=	1.06
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://jcm.dsl.visi.com/freebsd/svnup/ \
 		LOCAL/jgh/net/${PORTNAME}/

Added: head/net/svnup/files/patch-svnup.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/svnup/files/patch-svnup.c	Wed Oct 15 15:44:41 2014	(r370930)
@@ -0,0 +1,11 @@
+--- svnup.c.orig	2014-09-06 03:16:15.000000000 +0200
++++ svnup.c	2014-10-08 15:11:07.593705013 +0200
+@@ -355,7 +355,7 @@
+ 		SSL_load_error_strings();
+ 		connection->ctx = SSL_CTX_new(SSLv23_client_method());
+ 		SSL_CTX_set_mode(connection->ctx, SSL_MODE_AUTO_RETRY);
+-		SSL_CTX_set_options(connection->ctx, SSL_OP_ALL | SSL_OP_NO_TICKET | SSL_OP_NO_TLSv1);
++		SSL_CTX_set_options(connection->ctx, SSL_OP_ALL | SSL_OP_NO_TICKET);
+ 
+ 		if ((connection->ssl = SSL_new(connection->ctx)) == NULL)
+ 			err(EXIT_FAILURE, "reset_connection: SSL_new");


More information about the svn-ports-all mailing list