From: Sebastian Harl Date: Wed, 15 Apr 2015 09:28:53 +0000 (+0200) Subject: parser/grammar: Fix the hostname in a 'FETCH host' node. X-Git-Tag: sysdb-0.8.0~112 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=f2b0636cfbd8f109b49c7cd288a5ae9d53a75baf parser/grammar: Fix the hostname in a 'FETCH host' node. --- diff --git a/src/parser/grammar.y b/src/parser/grammar.y index bdba4ea..ed2b070 100644 --- a/src/parser/grammar.y +++ b/src/parser/grammar.y @@ -279,7 +279,7 @@ statement: fetch_statement: FETCH object_type STRING filter_clause { - $$ = sdb_ast_fetch_create($2, $3, NULL, $4); + $$ = sdb_ast_fetch_create($2, NULL, $3, $4); CK_OOM($$); } |