Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
descrambler: fixed flags logic in descrambler_external()
  • Loading branch information
perexg committed Oct 17, 2016
1 parent 8a6deb8 commit b15b02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/descrambler/descrambler.c
Expand Up @@ -427,7 +427,7 @@ descrambler_external ( service_t *t, int state )
if (t == NULL || (dr = t->s_descramble) == NULL)
return;
dr->dr_external = state ? 1 : 0;
service_set_streaming_status_flags(t, TSS_NO_DESCRAMBLER);
service_reset_streaming_status_flags(t, TSS_NO_DESCRAMBLER);
}

void
Expand Down

0 comments on commit b15b02c

Please sign in to comment.