Mercurial > pidgin.yaz
changeset 5271:216e28b00b7f
[gaim-migrate @ 5643]
fix buddies getting stuck typing when they sign off, and fix something
else I found annoying
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Thu, 01 May 2003 15:56:06 +0000 |
parents | d1fe8e320dab |
children | 992550219800 |
files | src/prpl.c src/server.c |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/prpl.c Thu May 01 08:58:56 2003 +0000 +++ b/src/prpl.c Thu May 01 15:56:06 2003 +0000 @@ -85,7 +85,7 @@ GSList *d = do_ask_dialogs; gaim_debug(GAIM_DEBUG_MISC, "prpl", - "%d dialogs to search", g_slist_length(d)); + "%d dialogs to search\n", g_slist_length(d)); while (d) { struct doaskstruct *doask = d->data;
--- a/src/server.c Thu May 01 08:58:56 2003 +0000 +++ b/src/server.c Thu May 01 15:56:06 2003 +0000 @@ -1081,6 +1081,7 @@ char *tmp = g_strdup_printf(_("%s logged out."), gaim_get_buddy_alias(b)); gaim_conversation_write(c, NULL, tmp, -1, WFLAG_SYSTEM, time(NULL)); + serv_got_typing_stopped(gc, name); /* obviously not typing */ g_free(tmp); } else if (awayqueue && find_queue_total_by_name(b->name)) { struct queued_message *qm = g_new0(struct queued_message, 1);