From 749316cb565ef66f1d9470da5f96f36a56223659 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 13 Nov 2005 15:27:59 +0000 Subject: [PATCH] hcidump: Add p_indent() to event filter decoding --- tools/parser/hci.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/parser/hci.c b/tools/parser/hci.c index d4f90a4bd..05b4e14da 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: -- 2.47.3