diff -r 6a2ffc66c022 -r 201c03cf6c5f src/protocols/irc/cmds.c --- a/src/protocols/irc/cmds.c Thu Jan 15 22:20:29 2004 +0000 +++ b/src/protocols/irc/cmds.c Thu Jan 15 22:53:07 2004 +0000 @@ -204,6 +204,17 @@ return 0; } +int irc_cmd_list(struct irc_conn *irc, const char *cmd, const char *target, const char **args) +{ + char *buf; + + buf = irc_format(irc, "v", "LIST"); + irc_send(irc, buf); + g_free(buf); + + return 0; +} + int irc_cmd_mode(struct irc_conn *irc, const char *cmd, const char *target, const char **args) { GaimConnection *gc;