# HG changeset patch # User Christian Hammond # Date 1085646668 0 # Node ID 6dd02df922b43c35a986e155763e610f7beb713f # Parent 9e5a709c30a89d4b1d7f81ea1c11784c1fb52508 [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 diff -r 9e5a709c30a8 -r 6dd02df922b4 src/protocols/msn/servconn.c --- 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); }