Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Oct 2014 15:44:42 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r370930 - in head/net/svnup: . files
Message-ID:  <201410151544.s9FFigFs008263@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410151544.s9FFigFs008263>