From d123d973d1e3c8626fe8715e32eede863b65f282 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 28 Oct 2004 19:40:27 +0000 Subject: [PATCH] hcidump: Fix message type to string function --- tools/parser/avdtp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/parser/avdtp.c b/tools/parser/avdtp.c index c68785f57..dd2e9d2c4 100644 --- a/tools/parser/avdtp.c +++ b/tools/parser/avdtp.c @@ -85,9 +85,9 @@ static char *mt2str(uint8_t hdr) switch (hdr & 0x03) { case 0x00: return "cmd"; - case 0x08: + case 0x02: return "rsp"; - case 0x0c: + case 0x03: return "rej"; default: return "rfa"; -- 2.47.3