Diff between 6883784cf7d0538320413c888c052a6ce8a1666d and 79dabfb925069d419b5deeb92d7bcd7749d210f9
Changed Files
| File | Additions | Deletions | Status |
| tools/parser/l2cap.c | +2 | -1 | modified |
Full Patch
diff --git a/tools/parser/l2cap.c b/tools/parser/l2cap.c
index 799d4b7..ad3b7ff 100644
--- a/tools/parser/l2cap.c
+++ b/tools/parser/l2cap.c
@@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
case 0x01:
return "Reject (REJ)";
case 0x02:
+ return "Receiver Not Ready (RNR)";
case 0x03:
- return "Reserved Supervisory";
+ return "Select Reject (SREJ)";
default:
return "Bad Supervisory";
}