Commit 2c896cb5 authored by Jean-Claude BAU's avatar Jean-Claude BAU Committed by Adam Wujek

Issue displaying TLV of unexppected frames

When received frames are displayed (diagnostic mode), PPSI was staying
forever in a loop due to unexpected TLV received in the frame.
parent ee15efd7
...@@ -401,6 +401,8 @@ static void dump_payload(char *prefix, void *pl, int len) ...@@ -401,6 +401,8 @@ static void dump_payload(char *prefix, void *pl, int len)
case PPM_SIGNALING : case PPM_SIGNALING :
donelen += l1sync_dump_tlv(prefix, pl + donelen, n); donelen += l1sync_dump_tlv(prefix, pl + donelen, n);
break; break;
default :
goto out;
} }
} }
out: out:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment