Skip to content
Snippets Groups Projects
Commit 89f0e918 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

knot1to2: improve query module warning message

parent 33c23ed3
No related branches found
No related tags found
No related merge requests found
......@@ -2546,7 +2546,7 @@ yyreduce:
#line 679 "cf-parse.y" /* yacc.c:1646 */
{
if (cf_get_extra(scanner)->run == S_FIRST) {
cf_warning(scanner, "query module is not yet implemented");
cf_warning(scanner, "query module is not supported by knot1to2");
}
}
#line 2553 "cf-parse.tab.c" /* yacc.c:1646 */
......@@ -2657,7 +2657,7 @@ yyreduce:
#line 717 "cf-parse.y" /* yacc.c:1646 */
{
if (cf_get_extra(scanner)->run == S_FIRST) {
cf_warning(scanner, "query module is not yet implemented");
cf_warning(scanner, "query module is not supported by knot1to2");
}
}
#line 2664 "cf-parse.tab.c" /* yacc.c:1646 */
......
......@@ -678,7 +678,7 @@ zone:
| zone NOTIFY_TIMEOUT NUM ';' { /* Not used. */ }
| zone QUERY_MODULE '{' {
if (cf_get_extra(scanner)->run == S_FIRST) {
cf_warning(scanner, "query module is not yet implemented");
cf_warning(scanner, "query module is not supported by knot1to2");
}
}
query_module_list '}'
......@@ -716,7 +716,7 @@ zones:
| zones NOTIFY_TIMEOUT NUM ';' { /* Not used. */ }
| zones QUERY_MODULE '{' {
if (cf_get_extra(scanner)->run == S_FIRST) {
cf_warning(scanner, "query module is not yet implemented");
cf_warning(scanner, "query module is not supported by knot1to2");
}
}
query_genmodule_list '}'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment