From: Jaroslav Kysela Date: Tue, 18 Aug 2020 14:53:23 +0000 (+0200) Subject: conf: quote also strings with '*' and '#' characters in string_print() X-Git-Tag: v1.2.4~35 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=ed752498522b0a99a9fbec99247d9c73b10abb3e;p=alsa-lib.git conf: quote also strings with '*' and '#' characters in string_print() Signed-off-by: Jaroslav Kysela --- diff --git a/src/conf.c b/src/conf.c index 8518f90c..7df2b4e7 100644 --- a/src/conf.c +++ b/src/conf.c @@ -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)