1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

/SET dcc_send_replace_space_with_underscore ON was buggy.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3015 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-11-19 12:18:11 +00:00 committed by cras
parent cb21fabb59
commit c2d0adc47c

View File

@ -400,7 +400,7 @@ static int dcc_send_one_file(int queue, const char *target, const char *fname,
str = g_strdup_printf(dcc->file_quoted ?
"DCC SEND \"%s\" %s %d %lu" :
"DCC SEND %s %s %d %lu",
fname, host, port, fsize);
dcc->arg, host, port, fsize);
dcc_ctcp_message(server, target, chat, FALSE, str);
g_free(str);