summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2004-07-02 22:17:29 +0000
committerSven Wegener <swegener@gentoo.org>2004-07-02 22:17:29 +0000
commit2e8289d42d6ceec6bbf4ce8b245be07685aeafc2 (patch)
tree9ed62493e07359361363f38d62a6a419b5c83afa /net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch
parentStable on alpha, bug #55441. (diff)
downloadhistorical-2e8289d42d6ceec6bbf4ce8b245be07685aeafc2.tar.gz
historical-2e8289d42d6ceec6bbf4ce8b245be07685aeafc2.tar.bz2
historical-2e8289d42d6ceec6bbf4ce8b245be07685aeafc2.zip
Version bump. Closes bug #55861. Removed older ebuilds.
Diffstat (limited to 'net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch')
-rw-r--r--net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch b/net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch
deleted file mode 100644
index 37f54b981fff..000000000000
--- a/net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/common/dcc.c.orig 2003-12-12 16:49:28.523536903 -0800
-+++ src/common/dcc.c 2003-12-12 16:50:50.339644657 -0800
-@@ -1659,6 +1659,11 @@
- * sending file.
- */
- dcc = find_dcc_from_id (pasvid, TYPE_SEND);
-+ /* defensive check for malformed requests */
-+ if( dcc == NULL ) {
-+ dcc_malformed( sess, nick, word_eol[4] + 2 );
-+ return;
-+ }
- dcc->addr = addr;
- dcc->port = port;
- dcc_connect(dcc);