hcidump: Print packet type when decoding Setup Synchronous Connection command

This commit is contained in:
Nick Pelly 2010-02-09 17:07:29 -08:00 committed by Marcel Holtmann
parent b1cf1d94a0
commit 6883784cf7

View File

@ -917,8 +917,9 @@ static inline void setup_sync_conn_dump(int level, struct frame *frm)
setup_sync_conn_cp *cp = frm->ptr;
p_indent(level, frm);
printf("handle %d voice setting 0x%4.4x\n", btohs(cp->handle),
btohs(cp->voice_setting));
printf("handle %d voice setting 0x%4.4x ptype 0x%4.4x\n",
btohs(cp->handle), btohs(cp->voice_setting),
btohs(cp->pkt_type));
}
static inline void hold_mode_dump(int level, struct frame *frm)