diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-01-03 03:02:33 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-01-03 03:02:33 +0000 |
commit | 569c633b663523f2794958e1eed6eccaa558aee5 (patch) | |
tree | 7f555af708bfad2f2a35d96e47531196e940a76b /irc/xchat2 | |
parent | ca64ab7d594efe32b97c8f0d366522512f803070 (diff) | |
download | ports-569c633b663523f2794958e1eed6eccaa558aee5.tar.gz ports-569c633b663523f2794958e1eed6eccaa558aee5.zip |
Notes
Diffstat (limited to 'irc/xchat2')
-rw-r--r-- | irc/xchat2/Makefile | 7 | ||||
-rw-r--r-- | irc/xchat2/distinfo | 2 | ||||
-rw-r--r-- | irc/xchat2/files/patch-xc206-fixpsend.diff | 22 |
3 files changed, 3 insertions, 28 deletions
diff --git a/irc/xchat2/Makefile b/irc/xchat2/Makefile index 630593b71d14..315a3b6b1097 100644 --- a/irc/xchat2/Makefile +++ b/irc/xchat2/Makefile @@ -6,12 +6,9 @@ # PORTNAME= xchat2 -PORTVERSION= 2.0.6 -PORTREVISION= 1 +PORTVERSION= 2.0.7 CATEGORIES= irc gnome ipv6 -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= adamw -# http://xchat.org/files/source/2.0/ +MASTER_SITES= http://xchat.org/files/source/2.0/ DISTNAME= xchat-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org diff --git a/irc/xchat2/distinfo b/irc/xchat2/distinfo index c6eca9801cfa..4534192d00e3 100644 --- a/irc/xchat2/distinfo +++ b/irc/xchat2/distinfo @@ -1 +1 @@ -MD5 (xchat-2.0.6.tar.bz2) = 5cc5e603083242fb598bc940b1a4fccc +MD5 (xchat-2.0.7.tar.bz2) = f53bae43f4e89c6a8d873877d86df1b5 diff --git a/irc/xchat2/files/patch-xc206-fixpsend.diff b/irc/xchat2/files/patch-xc206-fixpsend.diff deleted file mode 100644 index 7c6d49564492..000000000000 --- a/irc/xchat2/files/patch-xc206-fixpsend.diff +++ /dev/null @@ -1,22 +0,0 @@ -# Fixes potential crash when receiving an invalid PSEND ID number. ---- src/common/dcc.c 2003-11-28 14:06:57.000000000 +1100 -+++ src/common/dcc.c 2003-12-13 20:17:12.000000000 +1100 -@@ -1659,9 +1659,15 @@ - * sending file. - */ - dcc = find_dcc_from_id (pasvid, TYPE_SEND); -- dcc->addr = addr; -- dcc->port = port; -- dcc_connect(dcc); -+ if (dcc) -+ { -+ dcc->addr = addr; -+ dcc->port = port; -+ dcc_connect (dcc); -+ } else -+ { -+ dcc_malformed (sess, nick, word_eol[4] + 2); -+ } - return; - } - |