comparison src/account.c @ 10945:1ce8013f5642

[gaim-migrate @ 12740] This is probably better, thanks Bleeter, hopefully you'll not notice this commit came after my statement in #gaim :-) committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 26 May 2005 23:58:20 +0000
parents 4a4f2760a9ad
children 8d67f04911d6
comparison
equal deleted inserted replaced
10944:4a4f2760a9ad 10945:1ce8013f5642
26 #include "account.h" 26 #include "account.h"
27 #include "debug.h" 27 #include "debug.h"
28 #include "notify.h" 28 #include "notify.h"
29 #include "pounce.h" 29 #include "pounce.h"
30 #include "prefs.h" 30 #include "prefs.h"
31 #include "privacy.h"
31 #include "prpl.h" 32 #include "prpl.h"
32 #include "request.h" 33 #include "request.h"
33 #include "server.h" 34 #include "server.h"
34 #include "signals.h" 35 #include "signals.h"
35 #include "status.h" 36 #include "status.h"
681 g_free, delete_setting); 682 g_free, delete_setting);
682 account->ui_settings = g_hash_table_new_full(g_str_hash, g_str_equal, 683 account->ui_settings = g_hash_table_new_full(g_str_hash, g_str_equal,
683 g_free, (GDestroyNotify)g_hash_table_destroy); 684 g_free, (GDestroyNotify)g_hash_table_destroy);
684 account->system_log = NULL; 685 account->system_log = NULL;
685 /* 0 is not a valid privacy setting */ 686 /* 0 is not a valid privacy setting */
686 account->perm_deny = 1; 687 account->perm_deny = GAIM_PRIVACY_ALLOW_ALL;
687 688
688 account->presence = gaim_presence_new_for_account(account); 689 account->presence = gaim_presence_new_for_account(account);
689 690
690 prpl = gaim_find_prpl(protocol_id); 691 prpl = gaim_find_prpl(protocol_id);
691 692