1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

Fixed bug with "get_dcc_info" plugin interface function

This commit is contained in:
Sebastien Helleu
2006-01-26 10:18:50 +00:00
parent 2e1c6023d7
commit a7479272f0
4 changed files with 6 additions and 8 deletions
+1 -3
View File
@@ -427,12 +427,10 @@ weechat_plugin_get_dcc_info (t_weechat_plugin *plugin)
new_dcc_info->prev_dcc = last_dcc_info;
new_dcc_info->next_dcc = NULL;
if (!dcc_info)
{
dcc_info = new_dcc_info;
last_dcc_info = new_dcc_info;
}
else
last_dcc_info->next_dcc = new_dcc_info;
last_dcc_info = new_dcc_info;
}
}