diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-04-04 16:33:57 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-04-04 16:33:57 +0000 |
commit | 8bbf14cfce9addd67dd8a03fa1ca8260a6d16181 (patch) | |
tree | 58c12c8664aaabdd484a7336e005ac9dd8882ec1 /packet.c | |
parent | 9a564888ab55eadb75f0228747cdb96c7c238d08 (diff) | |
download | wireshark-8bbf14cfce9addd67dd8a03fa1ca8260a6d16181.tar.gz wireshark-8bbf14cfce9addd67dd8a03fa1ca8260a6d16181.tar.bz2 wireshark-8bbf14cfce9addd67dd8a03fa1ca8260a6d16181.zip |
Add #include "plugins.h" to get definition of HAVE_PLUGINS
svn path=/trunk/; revision=1793
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* packet.c * Routines for packet disassembly * - * $Id: packet.c,v 1.73 2000/04/04 07:02:56 guy Exp $ + * $Id: packet.c,v 1.74 2000/04/04 16:33:57 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -90,6 +90,8 @@ #include "resolv.h" #endif +#include "plugins.h" + extern capture_file cf; static int proto_frame = -1; |