From: <dat...@us...> - 2006-05-24 00:39:30
|
Revision: 16196 Author: datallah Date: 2006-05-23 17:39:15 -0700 (Tue, 23 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16196&view=rev Log Message: ----------- Show the channel name instead of "End of NAMES list" Modified Paths: -------------- trunk/src/protocols/irc/msgs.c Modified: trunk/src/protocols/irc/msgs.c =================================================================== --- trunk/src/protocols/irc/msgs.c 2006-05-21 03:10:46 UTC (rev 16195) +++ trunk/src/protocols/irc/msgs.c 2006-05-24 00:39:15 UTC (rev 16196) @@ -1,10 +1,10 @@ /** * @file msgs.c - * + * * gaim * * Copyright (C) 2003, Ethan Blanton <ebl...@cs...> - * + * * 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); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |