From 0c7f6132b3a13ef580f872db309b9adb061a0513 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 2 Dec 2009 15:15:21 -0600 Subject: Specifying who can't get the session bus. --- libindicator/indicator-service-manager.c | 4 ++-- 1 file 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; } -- cgit v1.2.3