Skip to content

Commit

Permalink
also decoding unit to unit talker aliase
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnchain authored and mach327 committed Feb 11, 2020
1 parent 3207fc1 commit 53a47a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applet/src/etsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void dump_full_lc( lc_t *lc )

PRINT("flco=%02x %s fid=%d svc=%d src=%d dst=%d\n",flco,get_flco_str(lc), fid,opts,get_adr(lc->src),get_adr(lc->dst));

if (flco == 0 && fid == 0x00 && taContext.src != get_adr(lc->src))
if ((flco == 0 || flco == 3) && fid == 0x00 && taContext.src != get_adr(lc->src))
{
memset(&taContext, 0, sizeof(taContext)); //Clear TA context
memset(&talkerAlias, 0, sizeof(talkerAlias)); //Clear TA context
Expand Down

0 comments on commit 53a47a1

Please sign in to comment.