aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/acn
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-29 22:20:21 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-29 22:20:21 +0000
commit99392257b7c2ba139cad76b08a5df820cb0dfee0 (patch)
tree0eab3bfa8bb4f3b560d9c574a610269c5c814c47 /plugins/acn
parent444119dbcb8228e5a47b6e00f7932aa04759b13d (diff)
In "plugins/plugin_api.h", don't include stuff required for the plugin
address table if we don't need the plugin address table, so as to catch plugin dissectors that don't directly include stuff they need - eventually, the plugin address table stuff should completely go away, so we don't want dissectors depending on it. Fix those dissectors caught by this. Don't include "simple_dialog.h" in the ASN.1 dissector - it doesn't use it. svn path=/trunk/; revision=12140
Diffstat (limited to 'plugins/acn')
-rw-r--r--plugins/acn/packet-acn.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/acn/packet-acn.c b/plugins/acn/packet-acn.c
index 52ee837ca5..34f803cced 100644
--- a/plugins/acn/packet-acn.c
+++ b/plugins/acn/packet-acn.c
@@ -33,19 +33,23 @@
#include "plugins/plugin_api.h"
#include "moduleinfo.h"
-#include "acn.h"
#include <stdio.h>
#include <stdlib.h>
-#include <gmodule.h>
#include <ctype.h>
#include <time.h>
#include <string.h>
+
+#include <glib.h>
+#include <gmodule.h>
+
#include <epan/packet.h>
#include <epan/addr_resolv.h>
#include <epan/prefs.h>
#include <epan/strutil.h>
+#include "acn.h"
+
#include "plugins/plugin_api_defs.h"
/* Define version if we are not building ethereal statically */