diff options
author | Ted Gould <ted@gould.cx> | 2010-01-28 21:07:54 -0800 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-28 21:07:54 -0800 |
commit | 21eca67f89870abd114f9ccc3ae04e7fd53189b1 (patch) | |
tree | 7b1749f22ca171a91486b296b917d4ee7981c768 /libindicator | |
parent | 138321d54c11376cabd40d8fb211941508ad5778 (diff) | |
download | libayatana-indicator-21eca67f89870abd114f9ccc3ae04e7fd53189b1.tar.gz libayatana-indicator-21eca67f89870abd114f9ccc3ae04e7fd53189b1.tar.bz2 libayatana-indicator-21eca67f89870abd114f9ccc3ae04e7fd53189b1.zip |
checking the error field for name callback and printing an error when it fails.
Diffstat (limited to 'libindicator')
-rw-r--r-- | libindicator/indicator-service.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libindicator/indicator-service.c b/libindicator/indicator-service.c index ccb56d5..eee95dd 100644 --- a/libindicator/indicator-service.c +++ b/libindicator/indicator-service.c @@ -334,10 +334,17 @@ try_and_get_name_cb (DBusGProxy * proxy, guint status, GError * error, gpointer IndicatorService * service = INDICATOR_SERVICE(data); g_return_if_fail(service != NULL); + if (error != NULL) { + g_warning("Unable to send message to request name: %s", error->message); + g_signal_emit(G_OBJECT(data), signals[SHUTDOWN], 0, TRUE); + return; + } + if (status != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER && status != DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER) { /* The already owner seems like it shouldn't ever happen, but I have a hard time throwing an error on it as we did achieve our goals. */ + g_warning("Name request failed. Status returned: %d", status); g_signal_emit(G_OBJECT(data), signals[SHUTDOWN], 0, TRUE); return; } |