comparison src/account.c @ 10944:4a4f2760a9ad

[gaim-migrate @ 12737] 0 is not a valid value for account->perm_deny. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 26 May 2005 13:04:41 +0000
parents 885377f484b7
children 1ce8013f5642
comparison
equal deleted inserted replaced
10943:aa1df43e474c 10944:4a4f2760a9ad
680 account->settings = g_hash_table_new_full(g_str_hash, g_str_equal, 680 account->settings = g_hash_table_new_full(g_str_hash, g_str_equal,
681 g_free, delete_setting); 681 g_free, delete_setting);
682 account->ui_settings = g_hash_table_new_full(g_str_hash, g_str_equal, 682 account->ui_settings = g_hash_table_new_full(g_str_hash, g_str_equal,
683 g_free, (GDestroyNotify)g_hash_table_destroy); 683 g_free, (GDestroyNotify)g_hash_table_destroy);
684 account->system_log = NULL; 684 account->system_log = NULL;
685 /* 0 is not a valid privacy setting */
686 account->perm_deny = 1;
685 687
686 account->presence = gaim_presence_new_for_account(account); 688 account->presence = gaim_presence_new_for_account(account);
687 689
688 prpl = gaim_find_prpl(protocol_id); 690 prpl = gaim_find_prpl(protocol_id);
689 691