diff options
Diffstat (limited to 'proto_ipv6_fragm.c')
-rw-r--r-- | proto_ipv6_fragm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto_ipv6_fragm.c b/proto_ipv6_fragm.c index 4e4af50..43c0f20 100644 --- a/proto_ipv6_fragm.c +++ b/proto_ipv6_fragm.c @@ -43,7 +43,7 @@ static void fragm(struct pkt_buff *pkt) ntohl(fragm_ops->h_fragm_identification)); tprintf(" ]\n"); - pkt_set_proto(pkt, ð_lay3, fragm_ops->h_fragm_next_header); + pkt_set_dissector(pkt, ð_lay3, fragm_ops->h_fragm_next_header); } static void fragm_less(struct pkt_buff *pkt) @@ -59,7 +59,7 @@ static void fragm_less(struct pkt_buff *pkt) tprintf(" FragmOffs %u", off_res_M >> 3); - pkt_set_proto(pkt, ð_lay3, fragm_ops->h_fragm_next_header); + pkt_set_dissector(pkt, ð_lay3, fragm_ops->h_fragm_next_header); } struct protocol ipv6_fragm_ops = { |