gaim/gaim

irc_cmd_whois() now expects args of length 2
oldstatus
2005-02-21, Daniel Atallah
c9f15243526a
Parents 256b697c2085
Children 271835cd313c
irc_cmd_whois() now expects args of length 2
--- a/src/protocols/irc/irc.c Mon Feb 21 09:30:36 2005 -0500
+++ b/src/protocols/irc/irc.c Mon Feb 21 21:36:25 2005 -0500
@@ -339,8 +339,9 @@
static void irc_get_info(GaimConnection *gc, const char *who)
{
struct irc_conn *irc = gc->proto_data;
- const char *args[1];
+ const char *args[2];
args[0] = who;
+ args[1] = '\0';
irc_cmd_whois(irc, "whois", NULL, args);
}