gaim/gaim

72ae9106c3bd
Parents 150d5e5ead24
Children 78d1272d2662
This is probably better, thanks Bleeter, hopefully you'll not notice this
commit came after my statement in #gaim :-)
--- a/src/account.c Thu May 26 09:04:27 2005 -0400
+++ b/src/account.c Thu May 26 19:57:57 2005 -0400
@@ -28,6 +28,7 @@
#include "notify.h"
#include "pounce.h"
#include "prefs.h"
+#include "privacy.h"
#include "prpl.h"
#include "request.h"
#include "signals.h"
@@ -146,7 +147,7 @@
g_free, (GDestroyNotify)g_hash_table_destroy);
account->system_log = NULL;
/* 0 is not a valid privacy setting */
- account->perm_deny = 1;
+ account->perm_deny = GAIM_PRIVACY_ALLOW_ALL;
return account;
}
--- a/src/blist.c Thu May 26 09:04:27 2005 -0400
+++ b/src/blist.c Thu May 26 19:57:57 2005 -0400
@@ -2021,7 +2021,7 @@
continue;
imode = atoi(mode);
- account->perm_deny = (imode != 0 ? imode : 1);
+ account->perm_deny = (imode != 0 ? imode : GAIM_PRIVACY_ALLOW_ALL);
for (x = anode->child; x; x = x->next) {
char *name;