summaryrefslogtreecommitdiffstats
path: root/src/parser_bison.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser_bison.y')
-rw-r--r--src/parser_bison.y6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/parser_bison.y b/src/parser_bison.y
index 28aa6cc1..eed60008 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -1924,7 +1924,8 @@ flowtable_identifier : identifier
obj_spec : table_spec identifier
{
$$ = $1;
- $$.obj = $2;
+ $$.obj.name = $2;
+ $$.obj.location = @2;
}
;
@@ -1939,7 +1940,8 @@ objid_spec : table_spec HANDLE NUM
obj_identifier : identifier
{
memset(&$$, 0, sizeof($$));
- $$.obj = $1;
+ $$.obj.name = $1;
+ $$.obj.location = @1;
}
;