View | Details | Raw Unified | Return to bug 94106
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	proxytunnel
8
PORTNAME=	proxytunnel
9
PORTVERSION=	1.5.0
9
PORTVERSION=	1.6.0
10
CATEGORIES=	security
10
CATEGORIES=	security
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (proxytunnel-1.5.0.tgz) = 2a36409580391e25421fc06e82eed4ce
1
MD5 (proxytunnel-1.6.0.tgz) = def873a50ad4d54f9775d2384605a1dd
2
SHA256 (proxytunnel-1.5.0.tgz) = 82f6e5ea8c425d5b3a86c0670cfbc3ebf6f805e4ceff5d4ab692dbf32cf600a6
2
SHA256 (proxytunnel-1.6.0.tgz) = 8c0ff7df9fcc2c190e7cb71a25d1c244b4819198980f8a4578ad86b41216829a
3
SIZE (proxytunnel-1.5.0.tgz) = 56775
3
SIZE (proxytunnel-1.6.0.tgz) = 58558
(-)files/patch-ntlm.c (-18 lines)
Removed Link Here
1
--- ntlm.c.orig	Mon Aug 15 12:05:33 2005
2
+++ ntlm.c	Tue Aug 16 19:33:37 2005
3
@@ -70,13 +70,14 @@
4
 
5
 	int len = unbase64(t2_buf, buf, TYPE2_BUF_SIZE);
6
 	int i;
7
+	ntlm_type2 *t2;
8
 
9
 	if (len <= 0) {
10
 		message("parse_type2: failed to decode the message\n");
11
 		return -1;
12
 	}
13
 
14
-	ntlm_type2 *t2 = (ntlm_type2 *)t2_buf;
15
+	t2 = (ntlm_type2 *)t2_buf;
16
 
17
 	if (strcmp(t2->signature, "NTLMSSP") != 0) {
18
 		message("parse_type2: Signature did not match\n");

Return to bug 94106