comparison src/protocols/msn/servconn.c @ 7938:160547821ea2

[gaim-migrate @ 8609] We weren't finding the default command handler, due to a case issue. Fixed. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 27 Dec 2003 01:37:33 +0000
parents 43803965ef45
children ef881489396e
comparison
equal deleted inserted replaced
7937:0dc286295b36 7938:160547821ea2
79 } 79 }
80 80
81 cb = g_hash_table_lookup(servconn->commands, command); 81 cb = g_hash_table_lookup(servconn->commands, command);
82 82
83 if (cb == NULL) { 83 if (cb == NULL) {
84 cb = g_hash_table_lookup(servconn->commands, "_UNKNOWN_"); 84 cb = g_hash_table_lookup(servconn->commands, "_unknown_");
85 85
86 if (cb == NULL) { 86 if (cb == NULL) {
87 gaim_debug(GAIM_DEBUG_WARNING, "msn", 87 gaim_debug(GAIM_DEBUG_WARNING, "msn",
88 "Unhandled command '%s'\n", str); 88 "Unhandled command '%s'\n", str);
89 89