pidgin/purple-plugin-pack

One last warning of consequence.

2010-12-04, John Bailey
930abc599db3
Parents 44420c7dcf63
Children b665b9d0acdd
One last warning of consequence.
--- a/irc-more/irc-more.c Sat Dec 04 09:39:15 2010 -0500
+++ b/irc-more/irc-more.c Sat Dec 04 09:40:21 2010 -0500
@@ -72,7 +72,7 @@
static void
irc_receiving_text(PurpleConnection *gc, const char **incoming, gpointer null)
{
- char **splits;
+ char **splits, *str;
PurpleAccount *account = NULL;
if (!incoming || !*incoming || !**incoming) /* oh the fun .. I can do this all day! */
@@ -85,7 +85,7 @@
return;
account = purple_connection_get_account(gc);
- char *str = g_ascii_strdown(splits[1], -1);
+ str = g_ascii_strdown(splits[1], -1);
if (strcmp(str, "kick") == 0 && splits[2] && splits[3]) {
char *name = splits[2];