This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 8a7415a53ab9e4e95eb38f6efa578744d4edf546
Author: Carsten Haitzler <[email protected]>
AuthorDate: Fri Sep 26 11:31:28 2025 +0100
bluez - log the ret code if its an err for unblock
---
src/modules/bluez5/e_mod_main.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/modules/bluez5/e_mod_main.c b/src/modules/bluez5/e_mod_main.c
index 1eaef1e8a..df2694017 100644
--- a/src/modules/bluez5/e_mod_main.c
+++ b/src/modules/bluez5/e_mod_main.c
@@ -198,12 +198,15 @@ ebluez5_popups_show(void)
static void
_cb_rfkill_unblock(void *datam EINA_UNUSED, const char *params)
{
+ char buf[64] = {0};
int ret_code = 0;
- if (sscanf(params, "%i %*s", &ret_code) != 1) return;
+ if (sscanf(params, "%i %63s", &ret_code, buf) != 2) return;
if (ret_code == 0) return;
+ printf("BZ: e_systtem rfkill-unblock err for [%s] ret=%i\n", buf, ret_code);
+
e_util_dialog_show
(_("Bluetooth rfkill run Error"),
_("Trying to rfkill unblock the bluetooth adapter failed.<br>"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.