Wed, 24 May 2006 00:39:15 +0000
[gaim-migrate @ 16196]
Show the channel name instead of "End of NAMES list"
| src/protocols/irc/msgs.c | file | annotate | diff | comparison | revisions |
--- a/src/protocols/irc/msgs.c Sun May 21 03:10:46 2006 +0000 +++ b/src/protocols/irc/msgs.c Wed May 24 00:39:15 2006 +0000 @@ -1,10 +1,10 @@ /** * @file msgs.c - * + * * gaim * * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu> - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -367,7 +367,7 @@ if (!strcmp(name, "366")) { convo = gaim_find_conversation_with_account(GAIM_CONV_TYPE_ANY, irc->nameconv ? irc->nameconv : args[1], irc->account); if (!convo) { - gaim_debug(GAIM_DEBUG_ERROR, "irc", "Got a NAMES list for %s, which doesn't exist\n", args[2]); + gaim_debug(GAIM_DEBUG_ERROR, "irc", "Got a NAMES list for %s, which doesn't exist\n", args[1]); g_string_free(irc->names, TRUE); irc->names = NULL; g_free(irc->nameconv);