Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
channels: fix plus typo in svcnamepicons() - fixes #3525
  • Loading branch information
perexg committed Jan 25, 2016
1 parent 06d9721 commit e29df17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/channels.c
Expand Up @@ -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;
Expand Down

0 comments on commit e29df17

Please sign in to comment.