diff options
author | Timo Sirainen <cras@irssi.org> | 2000-08-15 00:22:08 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-08-15 00:22:08 +0000 |
commit | 3baf7fbd4c5724b50830271bd06e139a6f2ab712 (patch) | |
tree | b299f3200020b49746630229388c8931622304ff /src/irc/dcc/dcc-chat.c | |
parent | a2d0944eee3e3387d0929dd7defbbe123f77148f (diff) | |
download | irssi-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.c | 2 |
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 */ |