diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/status-provider-mc5.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index b182752..334eb2e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-session (0.1.7-0ubuntu1~ppa2~mc5fix2) UNRELEASED; urgency=low + + * Name fix + + -- Ted Gould <ted@ubuntu.com> Thu, 08 Oct 2009 15:20:18 -0400 + indicator-session (0.1.7-0ubuntu1~ppa2~mc5fix1) karmic; urgency=low * MC5 Fix testing. diff --git a/src/status-provider-mc5.c b/src/status-provider-mc5.c index 46d5562..a904407 100644 --- a/src/status-provider-mc5.c +++ b/src/status-provider-mc5.c @@ -199,11 +199,11 @@ status_provider_mc5_finalize (GObject *object) static void dbus_namechange (DBusGProxy * proxy, const gchar * name, const gchar * prev, const gchar * new, StatusProviderMC5 * self) { - if (new != NULL && g_strcmp0(name, MC5_WELL_KNOWN_NAME) == 0) { + if (new != NULL && g_strcmp0(new, MC5_WELL_KNOWN_NAME) == 0) { g_debug("MC5 Coming online"); build_eam(self); } - if (prev != NULL && g_strcmp0(name, MC5_WELL_KNOWN_NAME) == 0) { + if (prev != NULL && g_strcmp0(prev, MC5_WELL_KNOWN_NAME) == 0) { g_debug("MC5 going offline"); StatusProviderMC5Private * priv = STATUS_PROVIDER_MC5_GET_PRIVATE(self); if (priv->manager != NULL) { |