changeset 13784:3c11054a3b80

[gaim-migrate @ 16196] Show the channel name instead of "End of NAMES list" committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 24 May 2006 00:39:15 +0000
parents a539caf502b0
children 10f702a4d3dc
files src/protocols/irc/msgs.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);