Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tvhlog: improve subsystem parser, fixes #2552
  • Loading branch information
perexg committed Dec 15, 2014
1 parent c08adfd commit 85a5d7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tvhlog.c
Expand Up @@ -103,7 +103,7 @@ tvhlog_set_subsys ( htsmsg_t **c, const char *subsys )
subsys = NULL;
a = 1;
if (!*t) goto next;
if (t[0] == '+' || t[0] == '-') {
if (t[0] == '+' || t[0] == '-' || t[0] <= ' ') {
a = t[0] == '+';
t++;
}
Expand Down

0 comments on commit 85a5d7c

Please sign in to comment.