aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-04-19 04:57:43 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-04-19 04:57:43 +0800
commit1052963824ca986bfe0255f534df68faf576e746 (patch)
tree16435781f01454c61500c2c2408a2b8030842b4f /e-util
parent6a52b2cc19aa11400f33087280b95329f1e87ff9 (diff)
downloadgsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar
gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar.gz
gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar.bz2
gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar.lz
gsoc2013-evolution-1052963824ca986bfe0255f534df68faf576e746.tar.xz
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')
-rw-r--r--e-util/ChangeLog8
-rw-r--r--e-util/e-plugin.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 8df4256595..73220b574c 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,11 @@
+2008-04-18 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes bug #528817
+
+ * 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.
+
2008-04-17 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #526739
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);
}