Changeset c11b68a for protocols/purple
- Timestamp:
- 2016-12-27T00:37:50Z (8 years ago)
- Branches:
- master
- Children:
- 398b3198
- Parents:
- faa7abb6
- git-author:
- dequis <dx@…> (27-12-16 00:37:12)
- git-committer:
- dequis <dx@…> (27-12-16 00:37:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/purple.c
rfaa7abb6 rc11b68a 819 819 if (pce->required && !g_hash_table_lookup(chat_hash, pce->identifier)) { 820 820 if (!missing_settings) { 821 missing_settings = g_string_new(NULL); 822 g_string_printf(missing_settings, 823 "Can't join %s. The following settings are required: ", room); 821 missing_settings = g_string_sized_new(32); 824 822 } 825 823 g_string_append_printf(missing_settings, "%s, ", pce->identifier); … … 835 833 g_string_truncate(missing_settings, missing_settings->len - 2); 836 834 837 imcb_error(ic, missing_settings->str);835 imcb_error(ic, "Can't join %s. The following settings are required: %s", room, missing_settings->str); 838 836 839 837 g_string_free(missing_settings, TRUE);
Note: See TracChangeset
for help on using the changeset viewer.