Mercurial > pidgin.yaz
changeset 9093:6dd02df922b4
[gaim-migrate @ 9870]
That broke string freeze, so we'll set this to how it was before the past
commit for this string, and then just remove the extra info again in
0.79cvs.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Thu, 27 May 2004 08:31:08 +0000 |
parents | 9e5a709c30a8 |
children | d516da4b8ace |
files | src/protocols/msn/servconn.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/msn/servconn.c Thu May 27 08:19:29 2004 +0000 +++ b/src/protocols/msn/servconn.c Thu May 27 08:31:08 2004 +0000 @@ -34,7 +34,7 @@ const char *names[] = { "Notification", "Switchboard" }; const char *name; - + gc = gaim_account_get_connection(servconn->session->account); name = names[servconn->type]; @@ -49,7 +49,8 @@ break; case MSN_ERROR_READ: cmd = servconn->cmdproc->last_trans; - tmp = g_strdup_printf(_("Error reading from %s server"), name); + tmp = g_strdup_printf(_("Error reading from %s server. Last" + "command was:\n %s"), name, cmd); gaim_debug_info("msn", "Last command was: %s\n", cmd); break; default: @@ -58,7 +59,7 @@ } gaim_connection_error(gc, tmp); - + g_free(tmp); }