summaryrefslogtreecommitdiffstats
path: root/src/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.y')
-rw-r--r--src/parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.y b/src/parser.y
index 26e71e37..461eb3f9 100644
--- a/src/parser.y
+++ b/src/parser.y
@@ -193,7 +193,7 @@ static void location_update(struct location *loc, struct location *rhs, int n)
%token BRIDGE "bridge"
-%token ETH "eth"
+%token ETHER "ether"
%token SADDR "saddr"
%token DADDR "daddr"
%token TYPE "type"
@@ -1392,7 +1392,7 @@ payload_base_spec : LL_HDR { $$ = PAYLOAD_BASE_LL_HDR; }
| TRANSPORT_HDR { $$ = PAYLOAD_BASE_TRANSPORT_HDR; }
;
-eth_hdr_expr : ETH eth_hdr_field
+eth_hdr_expr : ETHER eth_hdr_field
{
$$ = payload_expr_alloc(&@$, &payload_eth, $2);
}