]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
starter: Don't replace rarely used special characters in strings in ipsec.conf
authorTobias Brunner <tobias@strongswan.org>
Fri, 5 Jun 2015 13:49:39 +0000 (15:49 +0200)
committerTobias Brunner <tobias@strongswan.org>
Tue, 28 Jul 2015 11:27:32 +0000 (13:27 +0200)
src/starter/parser/lexer.l

index d967e745b3a567f46b45c0b8ab5219e8be0453da..d9f469c36a8d19e690ddd1f4bf1dda8d77a4471c 100644 (file)
@@ -150,8 +150,6 @@ static void include_files(parser_helper_t *ctx);
        \\n     yyextra->string_add(yyextra, "\n");
        \\r     yyextra->string_add(yyextra, "\r");
        \\t     yyextra->string_add(yyextra, "\t");
-       \\b     yyextra->string_add(yyextra, "\b");
-       \\f     yyextra->string_add(yyextra, "\f");
        \\\r?\n /* merge lines that end with EOL characters */
        \\.     yyextra->string_add(yyextra, yytext+1);
        [^\\\n"]+                       {