From: Pablo Neira Ayuso Date: Tue, 16 Jul 2024 17:34:28 +0000 (+0200) Subject: parser_bison: remove one more utf-8 character X-Git-Tag: v1.1.0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b8ab1b8c4b8704f64c28c2029d42faf9cfee1415;p=thirdparty%2Fnftables.git parser_bison: remove one more utf-8 character Still one more in an error in the parser, replace it found via git grep. Fixes: c92ec3b21979 ("src: remove utf-8 character in printf lines") Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/parser_bison.y b/src/parser_bison.y index 11ca957b..10105f15 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -4251,7 +4251,7 @@ variable_expr : '$' identifier sym = symbol_lookup_fuzzy(scope, $2); if (sym) { erec_queue(error(&@2, "unknown identifier '%s'; " - "did you mean identifier ‘%s’?", + "did you mean identifier '%s’?", $2, sym->identifier), state->msgs); } else {