diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-03-15 18:41:42 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-03-15 18:41:42 +0800 |
commit | de9c9bce7285d67337110c655dad62a633942d18 (patch) | |
tree | edfbed0a6ea4eaae894a5695ec21bac1853c0e80 /security | |
parent | babd7c4dbd02c38d69c1f42af9850ca3f5abf3bc (diff) | |
download | freebsd-ports-gnome-de9c9bce7285d67337110c655dad62a633942d18.tar.gz freebsd-ports-gnome-de9c9bce7285d67337110c655dad62a633942d18.tar.zst freebsd-ports-gnome-de9c9bce7285d67337110c655dad62a633942d18.zip |
Update to 1.6.0
PR: 94106
Diffstat (limited to 'security')
-rw-r--r-- | security/proxytunnel/Makefile | 2 | ||||
-rw-r--r-- | security/proxytunnel/distinfo | 6 | ||||
-rw-r--r-- | security/proxytunnel/files/patch-ntlm.c | 18 |
3 files changed, 4 insertions, 22 deletions
diff --git a/security/proxytunnel/Makefile b/security/proxytunnel/Makefile index e5e5c43b5eb2..b8ad670da141 100644 --- a/security/proxytunnel/Makefile +++ b/security/proxytunnel/Makefile @@ -6,7 +6,7 @@ # PORTNAME= proxytunnel -PORTVERSION= 1.5.0 +PORTVERSION= 1.6.0 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/security/proxytunnel/distinfo b/security/proxytunnel/distinfo index 915de8ac731c..9f578971a08d 100644 --- a/security/proxytunnel/distinfo +++ b/security/proxytunnel/distinfo @@ -1,3 +1,3 @@ -MD5 (proxytunnel-1.5.0.tgz) = 2a36409580391e25421fc06e82eed4ce -SHA256 (proxytunnel-1.5.0.tgz) = 82f6e5ea8c425d5b3a86c0670cfbc3ebf6f805e4ceff5d4ab692dbf32cf600a6 -SIZE (proxytunnel-1.5.0.tgz) = 56775 +MD5 (proxytunnel-1.6.0.tgz) = def873a50ad4d54f9775d2384605a1dd +SHA256 (proxytunnel-1.6.0.tgz) = 8c0ff7df9fcc2c190e7cb71a25d1c244b4819198980f8a4578ad86b41216829a +SIZE (proxytunnel-1.6.0.tgz) = 58558 diff --git a/security/proxytunnel/files/patch-ntlm.c b/security/proxytunnel/files/patch-ntlm.c deleted file mode 100644 index 436657f39cc1..000000000000 --- a/security/proxytunnel/files/patch-ntlm.c +++ /dev/null @@ -1,18 +0,0 @@ ---- ntlm.c.orig Mon Aug 15 12:05:33 2005 -+++ ntlm.c Tue Aug 16 19:33:37 2005 -@@ -70,13 +70,14 @@ - - int len = unbase64(t2_buf, buf, TYPE2_BUF_SIZE); - int i; -+ ntlm_type2 *t2; - - if (len <= 0) { - message("parse_type2: failed to decode the message\n"); - return -1; - } - -- ntlm_type2 *t2 = (ntlm_type2 *)t2_buf; -+ t2 = (ntlm_type2 *)t2_buf; - - if (strcmp(t2->signature, "NTLMSSP") != 0) { - message("parse_type2: Signature did not match\n"); |