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

dcc chat actions didn't work properly

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2309 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-01-11 12:19:47 +00:00 committed by cras
parent 1d7a8245ca
commit e35c8e4d08

View File

@ -92,7 +92,7 @@ static void sig_message_dcc_action(CHAT_DCC_REC *dcc, const char *msg)
query = query_find(NULL, tag); query = query_find(NULL, tag);
printformat(NULL, tag, MSGLEVEL_DCCMSGS | MSGLEVEL_ACTIONS, printformat(NULL, tag, MSGLEVEL_DCCMSGS | MSGLEVEL_ACTIONS,
query != NULL ? IRCTXT_ACTION_DCC_QUERY : query != NULL ? IRCTXT_ACTION_DCC_QUERY :
IRCTXT_ACTION_DCC, dcc->id, dcc->mynick, msg); IRCTXT_ACTION_DCC, dcc->id, msg);
g_free(tag); g_free(tag);
} }