Mercurial > pidgin
view libpurple/plugins/mono/loader/debug-glue.c @ 30100:3c09870e8564
ALICE sends a "603 Decline" to our DC request, so we need to fallback to a
regular transfer in this case as well.
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Wed, 26 May 2010 23:15:06 +0000 |
| parents | fd5dfd3c04b5 |
| children | a8cc50c2279f |
line wrap: on
line source
#include "mono-glue.h" #include "debug.h" void purple_debug_glue(int type, MonoString *cat, MonoString *str) { char *ccat; char *cstr; ccat = mono_string_to_utf8(cat); cstr = mono_string_to_utf8(str); purple_debug(type, ccat, "%s", cstr); g_free(ccat); g_free(cstr); }
