diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-04-19 04:57:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-04-19 04:57:43 +0800 |
commit | 1052963824ca986bfe0255f534df68faf576e746 (patch) | |
tree | 16435781f01454c61500c2c2408a2b8030842b4f /e-util/e-plugin.c | |
parent | 6a52b2cc19aa11400f33087280b95329f1e87ff9 (diff) | |
download | gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar.gz gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar.zst gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.zip |
** Fixes bug #528817
2008-04-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #528817
* e-util/e-plugin.c (e_plugin_register_type):
Fix a typo in the logic. This might explain why I occasionally
find Exchange Operations disabled on startup.
svn path=/trunk/; revision=35383
Diffstat (limited to 'e-util/e-plugin.c')
-rw-r--r-- | e-util/e-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 0ece70a360..d4770915d3 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -604,7 +604,7 @@ e_plugin_register_type(GType type) char *prop_type; prop_type = (char *)xmlGetProp(root, (const unsigned char *)"type"); - if (!strcmp((char *)type, klass->type)) + if (!strcmp(prop_type, klass->type)) add = g_slist_append(add, l->data); xmlFree(prop_type); } |