diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-12 12:50:16 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-12 12:50:16 +0100 |
commit | 8d25a7520005625822b0a3e8f9c1e72ee756d30d (patch) | |
tree | 66facf1bb591d6876ed9f24e9a9f375fa1a0535d /src/core | |
parent | 8cea059feb1da63a4d0ad91ba8c2df6fa9c12c48 (diff) | |
download | weechat-8d25a7520005625822b0a3e8f9c1e72ee756d30d.zip |
Use arguments for infolist "nicklist" to return only one nick or group
Format is: nick_xxx or group_xxx to return only nick/group called "xxx".
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-upgrade.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-upgrade.c b/src/core/wee-upgrade.c index dcb48084e..c468763cd 100644 --- a/src/core/wee-upgrade.c +++ b/src/core/wee-upgrade.c @@ -135,7 +135,7 @@ upgrade_weechat_save_buffers (struct t_upgrade_file *upgrade_file) ptr_infolist = infolist_new (); if (!ptr_infolist) return 0; - if (!gui_nicklist_add_to_infolist (ptr_infolist, ptr_buffer)) + if (!gui_nicklist_add_to_infolist (ptr_infolist, ptr_buffer, NULL)) { infolist_free (ptr_infolist); return 0; |