diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-08-15 10:21:01 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-08-15 10:21:01 +0200 |
commit | 62bdf888459a6d2ae50d2d2d00447307e0190a97 (patch) | |
tree | 5903792f1ed6fe72a010a6e470cd423ead38829d /proto_lldp.c | |
parent | 6f7131bae7f31ebc39c1e6a044c46b18d7267a30 (diff) |
dissectors: Remove unnecessary includes of dissector_eth.h
dissector_eth.h is only used in dissectors which need to manipulate the
eth_lay2 and eth_lay3 hash tables. Remove the include from all
dissectors that don't access them.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'proto_lldp.c')
-rw-r--r-- | proto_lldp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto_lldp.c b/proto_lldp.c index b3d2f86..9301281 100644 --- a/proto_lldp.c +++ b/proto_lldp.c @@ -12,6 +12,7 @@ #include "oui.h" #include "pkt_buff.h" #include "proto.h" +#include "protos.h" #define EXTRACT_16BIT(x) ntohs(*((uint16_t *) (x))) #define EXTRACT_32BIT(x) ntohl(*((uint32_t *) (x))) |