diff options
Diffstat (limited to 'trafgen_l2.c')
-rw-r--r-- | trafgen_l2.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/trafgen_l2.c b/trafgen_l2.c index 60da411..5600c24 100644 --- a/trafgen_l2.c +++ b/trafgen_l2.c @@ -45,9 +45,7 @@ static void arp_header_init(struct proto_hdr *hdr) { struct proto_hdr *lower; - proto_lower_default_add(PROTO_ETH); - - lower = proto_current_header(); + lower = proto_lower_default_add(PROTO_ETH); if (lower->id == PROTO_ETH) { uint8_t bcast[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |