Skip to content

Commit

Permalink
Merge pull request #692 from zarya/talkeralias
Browse files Browse the repository at this point in the history
Fix for #691
  • Loading branch information
sijskes committed Feb 16, 2017
2 parents 280e78c + 2f026c2 commit f082d02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applet/src/etsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ void dump_full_lc( lc_t *lc )
taContext.marked |= 1 << (flco - 4);

//Print TA if no more blocks
if (taContext.format == 1 || taContext.format == 2)
if (taContext.blocks == taContext.marked)
{
if (taContext.format == 1)
if (taContext.format == 1 || taContext.format == 2)
{
PRINT("TA (%d): %s\n", taContext.length, taContext.text);
}
Expand Down

0 comments on commit f082d02

Please sign in to comment.