diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-01-21 20:16:01 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-01-21 20:16:01 +0000 |
commit | 987c7dc2a3efd14fc7e564aeffa24980ab2aeba2 (patch) | |
tree | 69b67bb42bc27af52a358934494429ba9377e4c5 /packet-eth.c | |
parent | 23e7ce209ac1e84e58529de43263f671b0cd753e (diff) | |
download | wireshark-987c7dc2a3efd14fc7e564aeffa24980ab2aeba2.tar.gz wireshark-987c7dc2a3efd14fc7e564aeffa24980ab2aeba2.tar.bz2 wireshark-987c7dc2a3efd14fc7e564aeffa24980ab2aeba2.zip |
Always call the Ethernet and Token Ring dissectors through a dissector
handle, and make them static.
svn path=/trunk/; revision=2925
Diffstat (limited to 'packet-eth.c')
-rw-r--r-- | packet-eth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-eth.c b/packet-eth.c index 65744cb227..913ce1d03a 100644 --- a/packet-eth.c +++ b/packet-eth.c @@ -1,7 +1,7 @@ /* packet-eth.c * Routines for ethernet packet disassembly * - * $Id: packet-eth.c,v 1.57 2001/01/18 08:28:09 guy Exp $ + * $Id: packet-eth.c,v 1.58 2001/01/21 20:16:01 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -142,7 +142,7 @@ capture_eth(const u_char *pd, int offset, packet_counts *ld) } } -void +static void dissect_eth(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { int orig_captured_len; |