aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-12-02 15:15:21 -0600
committerTed Gould <ted@gould.cx>2009-12-02 15:15:21 -0600
commit0c7f6132b3a13ef580f872db309b9adb061a0513 (patch)
treebba5af025dcbaef5dfa633cc5d5679b9b319b73d
parent6bbe989007e7363daf84d6779d80312ee73daf60 (diff)
downloadlibayatana-indicator-0c7f6132b3a13ef580f872db309b9adb061a0513.tar.gz
libayatana-indicator-0c7f6132b3a13ef580f872db309b9adb061a0513.tar.bz2
libayatana-indicator-0c7f6132b3a13ef580f872db309b9adb061a0513.zip
Specifying who can't get the session bus.
-rw-r--r--libindicator/indicator-service-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicator/indicator-service-manager.c b/libindicator/indicator-service-manager.c
index 293ae03..86aa8b3 100644
--- a/libindicator/indicator-service-manager.c
+++ b/libindicator/indicator-service-manager.c
@@ -120,7 +120,7 @@ indicator_service_manager_init (IndicatorServiceManager *self)
GError * error = NULL;
DBusGConnection * session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error);
if (error != NULL) {
- g_error("Unable to get session bus: %s", error->message);
+ g_error("Unable to get session bus for manager: %s", error->message);
g_error_free(error);
return;
}
@@ -291,7 +291,7 @@ start_service_cb (DBusGProxy * proxy, guint status, GError * error, gpointer use
/* Woot! it's running. Let's do it some more. */
DBusGConnection * session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error);
if (error != NULL) {
- g_error("Unable to get session bus: %s", error->message);
+ g_error("Unable to get session bus for manager: %s", error->message);
g_error_free(error);
return;
}