--- a/libpurple/plugins/mono/loader/mono.c Thu Mar 23 21:01:15 2017 +0300 +++ b/libpurple/plugins/mono/loader/mono.c Fri Mar 24 02:23:46 2017 +0300 @@ -75,13 +75,13 @@ while ((m = mono_class_get_methods(mplug->klass, &iter))) { purple_debug_info("mono", "plugin method: %s\n", mono_method_get_name(m)); - if (strcmp(mono_method_get_name(m), "Load") == 0) { + if (purple_strequal(mono_method_get_name(m), "Load")) { mplug->load = m; found_load = TRUE; - } else if (strcmp(mono_method_get_name(m), "Unload") == 0) { + } else if (purple_strequal(mono_method_get_name(m), "Unload")) { mplug->unload = m; found_unload = TRUE; - } else if (strcmp(mono_method_get_name(m), "Destroy") == 0) { + } else if (purple_strequal(mono_method_get_name(m), "Destroy")) { mplug->destroy = m; found_destroy = TRUE; }