aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--src/indicator-session.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 1369e64..1088ace 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+indicator-session (0.1.1-0ubuntu2~ppa1) UNRELEASED; urgency=low
+
+ * Removing printing DBus error message as it sometimes isn't
+ valid. (LP: #420238)
+
+ -- Ted Gould <ted@ubuntu.com> Fri, 04 Sep 2009 13:28:07 -0500
+
indicator-session (0.1.1-0ubuntu1) karmic; urgency=low
* set bzr-builddeb merge mode to true for easy tarball build
diff --git a/src/indicator-session.c b/src/indicator-session.c
index 43c568f..8a4e298 100644
--- a/src/indicator-session.c
+++ b/src/indicator-session.c
@@ -367,7 +367,7 @@ build_users_menu (gpointer userdata)
}
if (!org_freedesktop_DBus_start_service_by_name (proxy, INDICATOR_USERS_DBUS_NAME, 0, &returnval, &error)) {
- g_error("Unable to send message to DBus to start service: %s", error != NULL ? error->message : "(NULL error)" );
+ g_error("Unable to send message to DBus to start service");
g_error_free(error);
return FALSE;
}