diff src/privacy.c @ 6375:72023626d5b8

[gaim-migrate @ 6880] Removed some unnecessary stuff. Oh yeah, and I think privacy is broken. I can block, but not unblock. I'll fix it tomorrow. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 05 Aug 2003 11:33:18 +0000
parents 4d61775a5741
children 01289157fc37
line wrap: on
line diff
--- a/src/privacy.c	Tue Aug 05 11:18:27 2003 +0000
+++ b/src/privacy.c	Tue Aug 05 11:33:18 2003 +0000
@@ -20,6 +20,7 @@
 #include "internal.h"
 
 #include "account.h"
+#include "debug.h"
 #include "privacy.h"
 #include "server.h"
 #include "util.h"
@@ -153,8 +154,11 @@
 	account->deny = g_slist_remove(account->deny, l->data);
 	g_free(l->data);
 
-	if (gaim_account_is_connected(account))
+	if (gaim_account_is_connected(account)) {
+		gaim_debug(GAIM_DEBUG_INFO, "privacy",
+				   "Removing %s from server-side deny list\n", who);
 		serv_rem_deny(gaim_account_get_connection(account), who);
+	}
 
 	gaim_blist_save();