diff options
author | marcus <marcus@FreeBSD.org> | 2004-01-03 11:02:33 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-01-03 11:02:33 +0800 |
commit | 293ea1c9555d571b5d6d5dddccccd6fb2c1103f0 (patch) | |
tree | 6c12db086da227da20cbddbf881a3ad34f6d5786 /irc/xchat2 | |
parent | e8ec1d7d766d19726b717c93e5c8838bff6ce444 (diff) | |
download | freebsd-ports-gnome-293ea1c9555d571b5d6d5dddccccd6fb2c1103f0.tar.gz freebsd-ports-gnome-293ea1c9555d571b5d6d5dddccccd6fb2c1103f0.tar.zst freebsd-ports-gnome-293ea1c9555d571b5d6d5dddccccd6fb2c1103f0.zip |
Update to 2.0.7.
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; - } - |