--- a/libpurple/protocols/msn/table.c Sat May 26 13:11:35 2007 +0000 +++ b/libpurple/protocols/msn/table.c Sat May 26 13:59:07 2007 +0000 @@ -77,14 +77,20 @@ cbs = NULL; - if (command == NULL){ + if (command == NULL) + { cbs = table->async; - }else if (strcmp(command, "fallback") == 0) { + } + else if (strcmp(command, "fallback") == 0) + { cbs = table->fallback; - }else{ + } + else + { cbs = g_hash_table_lookup(table->cmds, command); - if (cbs == NULL){ + if (cbs == NULL) + { cbs = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); g_hash_table_insert(table->cmds, command, cbs); }