Diff between eb47cb5a04cb1db3b87374c0cda799b7e3ef65af and 20e944ece7a1d43d2976289c85c19e5ad2056cbd
Changed Files
| File | Additions | Deletions | Status |
| monitor/att.c | +2 | -2 | modified |
Full Patch
diff --git a/monitor/att.c b/monitor/att.c
index 10d3d9e..51d83e6 100644
--- a/monitor/att.c
+++ b/monitor/att.c
@@ -730,7 +730,7 @@ static void print_notify(const struct l2cap_frame *frame, uint16_t handle,
struct gatt_db_attribute *attr;
struct gatt_handler *handler;
- print_handle(frame, handle, true);
+ print_handle(frame, handle, false);
print_hex_field(" Data", frame->data, len);
if (len > frame->size) {
@@ -738,7 +738,7 @@ static void print_notify(const struct l2cap_frame *frame, uint16_t handle,
return;
}
- attr = get_attribute(frame, handle, true);
+ attr = get_attribute(frame, handle, false);
if (!attr)
return;