summaryrefslogtreecommitdiff
path: root/src/irc/dcc/dcc-chat.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-08-15 00:22:08 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-08-15 00:22:08 +0000
commit3baf7fbd4c5724b50830271bd06e139a6f2ab712 (patch)
treeb299f3200020b49746630229388c8931622304ff /src/irc/dcc/dcc-chat.c
parenta2d0944eee3e3387d0929dd7defbbe123f77148f (diff)
downloadirssi-3baf7fbd4c5724b50830271bd06e139a6f2ab712.zip
Some changes handling g_input_add() - maybe this helps to problems
where irssi sometimes eats all the cpu. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@608 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/dcc/dcc-chat.c')
-rw-r--r--src/irc/dcc/dcc-chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/dcc/dcc-chat.c b/src/irc/dcc/dcc-chat.c
index 69299304..e8fdd2ad 100644
--- a/src/irc/dcc/dcc-chat.c
+++ b/src/irc/dcc/dcc-chat.c
@@ -248,7 +248,7 @@ static void dcc_chat_connect(DCC_REC *dcc)
dcc->handle = net_connect_ip(&dcc->addr, dcc->port,
source_host_ok ? source_host_ip : NULL);
if (dcc->handle != -1) {
- dcc->tagconn = g_input_add(dcc->handle, G_INPUT_WRITE|G_INPUT_READ|G_INPUT_EXCEPTION,
+ dcc->tagconn = g_input_add(dcc->handle, G_INPUT_WRITE|G_INPUT_READ,
(GInputFunction) sig_chat_connected, dcc);
} else {
/* error connecting */