diff options
author | Timo Sirainen <cras@irssi.org> | 2002-08-26 19:05:14 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-08-26 19:05:14 +0000 |
commit | 13effe87e4d81f4b66b0b9759cf09bab7b631fcb (patch) | |
tree | 9200249bd6d551307a4a81bba9fc89778e1cbe61 /src/irc | |
parent | 1ba9d9de9afbf41ce8e75e08e116e9fc5616bc9d (diff) | |
download | irssi-13effe87e4d81f4b66b0b9759cf09bab7b631fcb.zip |
removed the stupid error-parameters from net_connect*() calls. errno can be
used just fine.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2889 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/dcc/dcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/dcc/dcc.c b/src/irc/dcc/dcc.c index b19df58b..08d45ea9 100644 --- a/src/irc/dcc/dcc.c +++ b/src/irc/dcc/dcc.c @@ -247,7 +247,7 @@ GIOChannel *dcc_connect_ip(IPADDR *ip, int port) own_ip = &temp_ip; } - return net_connect_ip(ip, port, own_ip, NULL); + return net_connect_ip(ip, port, own_ip); } /* Server connected - update server for DCC records that have |