Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion netdissect.h
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ extern u_int fr_print(netdissect_options *, const u_char *, u_int);
extern int frag6_print(netdissect_options *, const u_char *, const u_char *);
extern void ftp_print(netdissect_options *, const u_char *, u_int);
extern void geneve_print(netdissect_options *, const u_char *, u_int);
extern void geonet_print(netdissect_options *, const u_char *, u_int, const struct lladdr_info *);
extern void geonet_print(netdissect_options *, const u_char *, u_int);
extern void gre_print(netdissect_options *, const u_char *, u_int);
extern int hbhopt_process(netdissect_options *, const u_char *, int *, uint32_t *);
extern void hex_and_ascii_print(netdissect_options *, const char *, const u_char *, u_int);
Expand Down
2 changes: 1 addition & 1 deletion print-ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ ethertype_print(netdissect_options *ndo,

case ETHERTYPE_GEONET_OLD:
case ETHERTYPE_GEONET:
geonet_print(ndo, p, length, src);
geonet_print(ndo, p, length);
return (1);

case ETHERTYPE_CALM_FAST:
Expand Down
Loading