summaryrefslogtreecommitdiff
path: root/src/irc/dcc/dcc-files.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-05-25 12:52:38 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-05-25 12:52:38 +0000
commit96020e699926d292d27dc6fd986e8bb688cbe31e (patch)
tree8af6f44f011bba933984be5cb0cd64f98cbb5eb3 /src/irc/dcc/dcc-files.c
parent48b409ea14ff2ab56499f8f7e862e40b84c0978c (diff)
downloadirssi-96020e699926d292d27dc6fd986e8bb688cbe31e.zip
With some systems Irssi didn't notice if connect() failed.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@232 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/dcc/dcc-files.c')
-rw-r--r--src/irc/dcc/dcc-files.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/dcc/dcc-files.c b/src/irc/dcc/dcc-files.c
index 5acd35c9..61989ce1 100644
--- a/src/irc/dcc/dcc-files.c
+++ b/src/irc/dcc/dcc-files.c
@@ -178,7 +178,7 @@ static void cmd_dcc_get(gchar *data)
source_host_ok ? source_host_ip : NULL);
if (dcc->handle != -1)
{
- dcc->tagread = g_input_add(dcc->handle, G_INPUT_WRITE,
+ dcc->tagread = g_input_add(dcc->handle, G_INPUT_WRITE|G_INPUT_READ|G_INPUT_EXCEPTION,
(GInputFunction) dcc_get_connect, dcc);
}
else
@@ -227,7 +227,7 @@ static void dcc_resume_setup(DCC_REC *dcc, gint port)
source_host_ok ? source_host_ip : NULL);
if (dcc->handle != -1)
{
- dcc->tagread = g_input_add(dcc->handle, G_INPUT_WRITE,
+ dcc->tagread = g_input_add(dcc->handle, G_INPUT_WRITE|G_INPUT_READ|G_INPUT_EXCEPTION,
(GInputFunction) dcc_get_connect, dcc);
}
else