Mercurial > pidgin
comparison src/protocols/msn/cmdproc.c @ 19783:995aea35b05c
[gaim-migrate @ 16329]
change it to windows Live Messenger
Basic TWN authentication OK now
committer: Ethan Blanton <elb@pidgin.im>
| author | Ma Yuan <mayuan2006@gmail.com> |
|---|---|
| date | Sat, 24 Jun 2006 12:04:32 +0000 |
| parents | 1a97d5e88d12 |
| children | bc30c6270d9f |
comparison
equal
deleted
inserted
replaced
| 13850:0e1e59770cb0 | 19783:995aea35b05c |
|---|---|
| 226 void | 226 void |
| 227 msn_cmdproc_process_msg(MsnCmdProc *cmdproc, MsnMessage *msg) | 227 msn_cmdproc_process_msg(MsnCmdProc *cmdproc, MsnMessage *msg) |
| 228 { | 228 { |
| 229 MsnMsgTypeCb cb; | 229 MsnMsgTypeCb cb; |
| 230 | 230 |
| 231 if (msn_message_get_content_type(msg) == NULL) | 231 if (msn_message_get_content_type(msg) == NULL){ |
| 232 { | |
| 233 gaim_debug_misc("msn", "failed to find message content\n"); | 232 gaim_debug_misc("msn", "failed to find message content\n"); |
| 234 return; | 233 return; |
| 235 } | 234 } |
| 236 | 235 |
| 237 cb = g_hash_table_lookup(cmdproc->cbs_table->msgs, | 236 cb = g_hash_table_lookup(cmdproc->cbs_table->msgs, |
| 238 msn_message_get_content_type(msg)); | 237 msn_message_get_content_type(msg)); |
| 239 | 238 |
| 240 if (cb == NULL) | 239 if (cb == NULL){ |
| 241 { | |
| 242 gaim_debug_warning("msn", "Unhandled content-type '%s'\n", | 240 gaim_debug_warning("msn", "Unhandled content-type '%s'\n", |
| 243 msn_message_get_content_type(msg)); | 241 msn_message_get_content_type(msg)); |
| 244 | 242 |
| 245 return; | 243 return; |
| 246 } | 244 } |
