Mercurial > pidgin
view libpurple/plugins/mono/loader/debug-glue.c @ 28051:b341ae89f5ce
certs: Allow for dealing with multiple things wrong with a cert.
Among other things, this also no longer treats an expired certificate as
a fatal error. Please review this and check my logic. Comments on the
certificate strings welcome.
Refs #8226, #9971. Closes #9976.
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Sat, 22 Aug 2009 05:38:23 +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); }
