aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo F. Padovan <gustavo@padovan.org>2010-07-12 13:55:49 -0300
committerJohan Hedberg <johan.hedberg@nokia.com>2010-07-12 14:03:13 -0300
commit1e4d575d04344ee802bb4c057125ea93e0f78a53 (patch)
treead8217c82c2385a7563808d2ec6f054e2fc69055
parent1b6a9f0a124fa36a1c839b655152d126eda8d9cd (diff)
downloadbluez-hcidump-1e4d575d04344ee802bb4c057125ea93e0f78a53.tar.gz
Show F-bit instead of Retransmission Disable
"F-bit" make more sense for the Enhanced Retranstransmission mode.
-rw-r--r--parser/l2cap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser/l2cap.c b/parser/l2cap.c
index ad3b7ff..174cd3a 100644
--- a/parser/l2cap.c
+++ b/parser/l2cap.c
@@ -847,7 +847,7 @@ static void l2cap_parse(int level, struct frame *frm)
}
printf(" ReqSeq %d", (ctrl & 0x3f00) >> 8);
if (ctrl & 0x80)
- printf(" Retransmission Disable");
+ printf(" F-bit");
printf("\n");
}
}