comparison libpurple/protocols/irc/msgs.c @ 32787:900f6ee1188e

Remove unused, but awesomely named, variable.
author Mark Doliner <mark@kingant.net>
date Fri, 04 May 2012 07:29:24 +0000
parents f911cdafdcd8
children 8331b45b6200
comparison
equal deleted inserted replaced
32785:f911cdafdcd8 32787:900f6ee1188e
113 } 113 }
114 114
115 /* This function is ugly, but it's really an error handler. */ 115 /* This function is ugly, but it's really an error handler. */
116 void irc_msg_default(struct irc_conn *irc, const char *name, const char *from, char **args) 116 void irc_msg_default(struct irc_conn *irc, const char *name, const char *from, char **args)
117 { 117 {
118 int i, directed_magic = TRUE; 118 int i;
119 char *convname, *end, *tmp, *cur; 119 char *convname, *end, *tmp, *cur;
120 PurpleConversation *convo; 120 PurpleConversation *convo;
121 121
122 for (cur = args[0], i = 0; i < 4; i++) { 122 for (cur = args[0], i = 0; i < 4; i++) {
123 end = strchr(cur, ' '); 123 end = strchr(cur, ' ');