Skip to content

Commit

Permalink
fix TCP/UDP protocol stream output
Browse files Browse the repository at this point in the history
closes #16
  • Loading branch information
rfuchs committed Aug 6, 2014
1 parent 8f4e345 commit e0957d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/call_interfaces.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static str *streams_print(GQueue *s, int start, int end, const char *prefix, enu
if (prefix)
g_string_append_printf(o, "%s ", prefix);

for (i = start; i < end; i++) {
for (i = start; i <= end; i++) {
for (l = s->head; l; l = l->next) {
media = l->data;
if (media->index == i)
Expand Down

0 comments on commit e0957d1

Please sign in to comment.