diff mbox series

[BlueZ] client/gatt: Fix property_change in WriteValue for desc

Message ID 20211206234001.4248-1-ulissesaraujocosta@gmail.com
State New
Headers show
Series [BlueZ] client/gatt: Fix property_change in WriteValue for desc | expand

Commit Message

Ulisses Costa Dec. 6, 2021, 11:40 p.m. UTC
---
 client/gatt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Dec. 6, 2021, 11:56 p.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=591213

---Test result---

Test Summary:
CheckPatch                    PASS      1.28 seconds
GitLint                       PASS      0.86 seconds
Prep - Setup ELL              PASS      42.63 seconds
Build - Prep                  PASS      0.43 seconds
Build - Configure             PASS      8.04 seconds
Build - Make                  PASS      183.51 seconds
Make Check                    PASS      9.36 seconds
Make Distcheck                PASS      218.76 seconds
Build w/ext ELL - Configure   PASS      8.12 seconds
Build w/ext ELL - Make        PASS      172.56 seconds



---
Regards,
Linux Bluetooth
Luiz Augusto von Dentz Dec. 8, 2021, 2:50 a.m. UTC | #2
Hi Ulisses,

On Mon, Dec 6, 2021 at 10:36 PM <bluez.test.bot@gmail.com> wrote:
>
> This is automated email and please do not reply to this email!
>
> Dear submitter,
>
> Thank you for submitting the patches to the linux bluetooth mailing list.
> This is a CI test results with your patch series:
> PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=591213
>
> ---Test result---
>
> Test Summary:
> CheckPatch                    PASS      1.28 seconds
> GitLint                       PASS      0.86 seconds
> Prep - Setup ELL              PASS      42.63 seconds
> Build - Prep                  PASS      0.43 seconds
> Build - Configure             PASS      8.04 seconds
> Build - Make                  PASS      183.51 seconds
> Make Check                    PASS      9.36 seconds
> Make Distcheck                PASS      218.76 seconds
> Build w/ext ELL - Configure   PASS      8.12 seconds
> Build w/ext ELL - Make        PASS      172.56 seconds
>
>
>
> ---
> Regards,
> Linux Bluetooth

Applied, thanks.
diff mbox series

Patch

diff --git a/client/gatt.c b/client/gatt.c
index 9c991c2ac..11f70dc4f 100644
--- a/client/gatt.c
+++ b/client/gatt.c
@@ -2749,7 +2749,7 @@  static DBusMessage *desc_write_value(DBusConnection *conn, DBusMessage *msg,
 	bt_shell_printf("[" COLORED_CHG "] Attribute %s (%s) written",
 			desc->path, bt_uuidstr_to_str(desc->uuid));
 
-	g_dbus_emit_property_changed(conn, desc->path, CHRC_INTERFACE, "Value");
+	g_dbus_emit_property_changed(conn, desc->path, DESC_INTERFACE, "Value");
 
 	return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
 }