Mercurial > pidgin
changeset 8662:c47a90a0a3b1
[gaim-migrate @ 9414]
Fix error reporting again in MSN.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 14 Apr 2004 08:55:28 +0000 |
parents | 060171053a32 |
children | 17ef51dc609c |
files | src/protocols/msn/error.c src/protocols/msn/servconn.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/msn/error.c Wed Apr 14 05:16:52 2004 +0000 +++ b/src/protocols/msn/error.c Wed Apr 14 08:55:28 2004 +0000 @@ -232,7 +232,7 @@ char buf[MSN_BUF_LEN]; g_snprintf(buf, sizeof(buf), _("MSN Error: %s\n"), - msn_error_get_text(type)); + msn_error_get_text(type)); gaim_notify_error(session->account->gc, NULL, buf, NULL); }
--- a/src/protocols/msn/servconn.c Wed Apr 14 05:16:52 2004 +0000 +++ b/src/protocols/msn/servconn.c Wed Apr 14 08:55:28 2004 +0000 @@ -435,7 +435,7 @@ cb = g_hash_table_lookup(servconn->commands, command); if (cb == NULL) { - cb = g_hash_table_lookup(servconn->commands, "_unknown_"); + cb = g_hash_table_lookup(servconn->commands, "_UNKNOWN_"); if (cb == NULL) { gaim_debug(GAIM_DEBUG_WARNING, "msn",