Diff between 1d703e4b10e05e7df85cf0873539e467ae6906d0 and 749316cb565ef66f1d9470da5f96f36a56223659
Changed Files
| File | Additions | Deletions | Status |
| tools/parser/hci.c | +3 | -0 | modified |
Full Patch
diff --git a/tools/parser/hci.c b/tools/parser/hci.c
index d4f90a4..05b4e14 100644
--- a/tools/parser/hci.c
+++ b/tools/parser/hci.c
@@ -751,9 +751,11 @@ static inline void set_event_flt_dump(int level, struct frame *frm)
switch (cp->flt_type) {
case FLT_CLEAR_ALL:
+ p_indent(level, frm);
printf("Clear all filters\n");
break;
case FLT_INQ_RESULT:
+ p_indent(level, frm);
printf("Inquiry result");
switch (cp->cond_type) {
case INQ_RESULT_RETURN_ALL:
@@ -765,6 +767,7 @@ static inline void set_event_flt_dump(int level, struct frame *frm)
}
break;
case FLT_CONN_SETUP:
+ p_indent(level, frm);
printf("Connection setup");
switch (cp->cond_type) {
case CONN_SETUP_ALLOW_ALL: