changeset 4072:226f6871643c

[gaim-migrate @ 4284] Deryni's patch introduced a little bug that made one unable to respond to queued messages. I would fix it, but I don't really care about this feature ;) I'm just reversing it and letting Etan fix it. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 14 Dec 2002 02:27:15 +0000
parents 2532f1192da3
children 405340263d75
files src/server.c
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/server.c	Fri Dec 13 22:34:14 2002 +0000
+++ b/src/server.c	Sat Dec 14 02:27:15 2002 +0000
@@ -621,11 +621,6 @@
 			struct buddy *b;
 
 			qm = g_new0(struct queued_message, 1);
-			if (OPT_IM_ALIAS_TAB) {
-				b = find_buddy(gc, name);
-				g_snprintf(qm->name, sizeof(qm->name), "%s", b ? b->show : name);
-			}
-			else
 				g_snprintf(qm->name, sizeof(qm->name), "%s", name);
 			qm->message = g_memdup(message, len == -1 ? strlen(message) + 1 : len);
 			qm->gc = gc;