diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-02-11 15:42:02 -0500 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-02-11 15:42:02 -0500 |
commit | 9b24d378a39850f20bc84a0a533bb915897c3ef6 (patch) | |
tree | 6c0948051f026be410710616a39574b7dd4cbd0c /src | |
parent | baf998165ac6e105e83859d1f80644d2b798b749 (diff) |
ecore-drm: Print error when taking control of a device fails
Summary: If we send a dbus blocking message, and it returns an error
then we should be printing out this error message
@fix
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_drm/ecore_drm_dbus.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/ecore_drm/ecore_drm_dbus.c b/src/lib/ecore_drm/ecore_drm_dbus.c index 2e745ebbac..a39770df2f 100644 --- a/src/lib/ecore_drm/ecore_drm_dbus.c +++ b/src/lib/ecore_drm/ecore_drm_dbus.c | |||
@@ -265,6 +265,7 @@ _ecore_drm_dbus_device_take_no_pending(uint32_t major, uint32_t minor, Eina_Bool | |||
265 | Eldbus_Proxy *proxy; | 265 | Eldbus_Proxy *proxy; |
266 | Eldbus_Message *msg, *reply; | 266 | Eldbus_Message *msg, *reply; |
267 | Eina_Bool b; | 267 | Eina_Bool b; |
268 | const char *errname, *errmsg; | ||
268 | int fd; | 269 | int fd; |
269 | 270 | ||
270 | /* try to get the Session proxy */ | 271 | /* try to get the Session proxy */ |
@@ -284,6 +285,11 @@ _ecore_drm_dbus_device_take_no_pending(uint32_t major, uint32_t minor, Eina_Bool | |||
284 | return -1; | 285 | return -1; |
285 | 286 | ||
286 | reply = eldbus_proxy_send_and_block(proxy, msg, timeout); | 287 | reply = eldbus_proxy_send_and_block(proxy, msg, timeout); |
288 | if (eldbus_message_error_get(msg, &errname, &errmsg)) | ||
289 | { | ||
290 | ERR("Eldbus Message Error: %s %s", errname, errmsg); | ||
291 | return -1; | ||
292 | } | ||
287 | 293 | ||
288 | if (!eldbus_message_arguments_get(reply, "hb", &fd, &b)) | 294 | if (!eldbus_message_arguments_get(reply, "hb", &fd, &b)) |
289 | return -1; | 295 | return -1; |