We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae506f9 commit 2e8a039Copy full SHA for 2e8a039
1 file changed
src/rrdEventProcess.c
@@ -657,7 +657,7 @@ static void removeSpecialCharacterfromIssueTypeList(char *str)
657
658
while (str[source] != '\0')
659
{
660
- if (isalnum(str[source]) || str[source] == ',' || str[source] == '.' || str[source] == '_')
+ if (isalnum(str[source]) || str[source] == ',' || str[source] == '.' || str[source] == '_'|| str[source] == '-')
661
662
str[destination] = str[source];
663
++destination;
0 commit comments