comparison libpurple/protocols/bonjour/jabber.c @ 22486:3225c99785b8

Fix a bunch of compiler warnings caused by my addition of G_GNUC_PRINTF() to our debug functions (I really thought we had added that in a while ago?) I didn't fix all of them... just most of them. Oh, see these pages for a little info: http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html http://library.gnome.org/devel/glib/unstable/glib-Miscellaneous-Macros.html#G-GNUC-PRINTF:CAPS
author Mark Doliner <mark@kingant.net>
date Sun, 16 Mar 2008 20:36:52 +0000
parents 603d5325af4c
children dfb1cf26e0c8
comparison
equal deleted inserted replaced
22485:9511acb88e58 22486:3225c99785b8
1147 1147
1148 acc = pb->account; 1148 acc = pb->account;
1149 1149
1150 for(l = acc->deny; l != NULL; l = l->next) { 1150 for(l = acc->deny; l != NULL; l = l->next) {
1151 if(!purple_utf8_strcasecmp(pb->name, (char *)l->data)) { 1151 if(!purple_utf8_strcasecmp(pb->name, (char *)l->data)) {
1152 purple_debug_info("bonjour", "%s has been blocked.\n", pb->name, acc->username); 1152 purple_debug_info("bonjour", "%s has been blocked by %s.\n", pb->name, acc->username);
1153 blocked = TRUE; 1153 blocked = TRUE;
1154 break; 1154 break;
1155 } 1155 }
1156 } 1156 }
1157 return blocked; 1157 return blocked;