On Tue, Nov 15, 2016 at 05:22:38PM -0200, Elise Lennion wrote: > Error messages in nft should start with "syntax error" to keep > consistency. A new function add_syntax_error() was created to add this > prefix when necessary. Probably you can just add EREC_SYNTAX_ERROR to enum error_record_types, then add: #define syntax_error(loc, fmt, args...) \ erec_create(EREC_SYNTA_ERROR, (loc), (fmt), ## args) and use it from src/parser_bison.y Thanks! -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html