summaryrefslogtreecommitdiff
path: root/print-llc.c
diff options
context:
space:
mode:
Diffstat (limited to 'print-llc.c')
-rw-r--r--print-llc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/print-llc.c b/print-llc.c
index d20fbdf13c36..a1934715c188 100644
--- a/print-llc.c
+++ b/print-llc.c
@@ -417,7 +417,7 @@ snap_print(const u_char *p, u_int length, u_int caplen, u_int bridge_pad)
* Cisco hardware; the protocol ID is
* an Ethernet protocol type.
*/
- ret = ethertype_print(et, p, length, caplen);
+ ret = ethertype_print(gndo, et, p, length, caplen);
if (ret)
return (ret);
break;
@@ -432,7 +432,7 @@ snap_print(const u_char *p, u_int length, u_int caplen, u_int bridge_pad)
* but used 0x000000 and an Ethernet
* packet type for AARP packets.
*/
- ret = ethertype_print(et, p, length, caplen);
+ ret = ethertype_print(gndo, et, p, length, caplen);
if (ret)
return (ret);
}
@@ -479,7 +479,7 @@ snap_print(const u_char *p, u_int length, u_int caplen, u_int bridge_pad)
/*
* What remains is an Ethernet packet.
*/
- ether_print(p, length, caplen, NULL, NULL);
+ ether_print(gndo, p, length, caplen, NULL, NULL);
return (1);
case PID_RFC2684_802_5_FCS: