conf: quote also strings with '*' and '#' characters in string_print()

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2020-08-18 16:53:23 +02:00
parent e097dd491a
commit ed75249852

View file

@ -1536,6 +1536,8 @@ static void string_print(char *str, int id, snd_output_t *out)
case ']':
case '\'':
case '"':
case '*':
case '#':
goto quoted;
default:
if (*p <= 31 || *p >= 127)