From: Jaroslav Kysela Date: Mon, 25 Jan 2016 18:02:50 +0000 (+0100) Subject: channels: fix plus typo in svcnamepicons() - fixes #3525 X-Git-Tag: v4.2.1~1116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e29df17984c5e743b8a5ff1fc94ef9273b2166d5;p=thirdparty%2Ftvheadend.git channels: fix plus typo in svcnamepicons() - fixes #3525 --- diff --git a/src/channels.c b/src/channels.c index a361737fa..2253ce001 100644 --- a/src/channels.c +++ b/src/channels.c @@ -675,7 +675,7 @@ svcnamepicons(const char *svcname) c = *s; if (c == '&') { d[0] = 'a'; d[1] = 'n'; d[2] = 'd'; d += 3; - } else if (c == '*') { + } else if (c == '+') { d[0] = 'p'; d[1] = 'l'; d[2] = 'u'; d[3] = 's'; d += 4; } else if (c == '*') { d[0] = 's'; d[1] = 't'; d[2] = 'a'; d[3] = 'r'; d += 4;