diff options
author | Ted Gould <ted@canonical.com> | 2009-09-04 13:28:57 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-04 13:28:57 -0500 |
commit | 9a97431af6eba6c290017bd1cd8118b3f199e82e (patch) | |
tree | 854f23bd03e6880a933db5dd4eba2726014d6a4c | |
parent | 7f656a9416eae80a6cd68754b97cd2b104f2e711 (diff) | |
parent | a5b8008742a719b77a7f3a13f81c2af02f6e4550 (diff) | |
download | ayatana-indicator-session-9a97431af6eba6c290017bd1cd8118b3f199e82e.tar.gz ayatana-indicator-session-9a97431af6eba6c290017bd1cd8118b3f199e82e.tar.bz2 ayatana-indicator-session-9a97431af6eba6c290017bd1cd8118b3f199e82e.zip |
Removing printing DBus error message as it sometimes isn't
valid. (LP: #420238)
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/indicator-session.c | 2 |
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; } |