summaryrefslogtreecommitdiff
path: root/asn1/pkcs12
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-12-23 00:32:58 -0500
committerBill Meier <wmeier@newsguy.com>2014-12-23 05:39:00 +0000
commitdd859eada4bd1dd563c2b40ea5aa43adac5d01a8 (patch)
tree8e439521218764d94ba45d4d153d29bb663ce096 /asn1/pkcs12
parent17582d345da954b5b4c8ed2b561dc279cf364562 (diff)
downloadwireshark-dd859eada4bd1dd563c2b40ea5aa43adac5d01a8.tar.gz
asn1 generated dissectors: cleanup #include usage
Change-Id: I36b2731d67f9345d2fd0c23800bba7d2be94c387 Reviewed-on: https://code.wireshark.org/review/6008 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'asn1/pkcs12')
-rw-r--r--asn1/pkcs12/packet-pkcs12-template.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/asn1/pkcs12/packet-pkcs12-template.c b/asn1/pkcs12/packet-pkcs12-template.c
index db10a0e1bb..543a86e6db 100644
--- a/asn1/pkcs12/packet-pkcs12-template.c
+++ b/asn1/pkcs12/packet-pkcs12-template.c
@@ -27,13 +27,15 @@
#include "config.h"
-#include <glib.h>
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
#include <epan/packet.h>
#include <epan/expert.h>
#include <epan/oids.h>
#include <epan/asn1.h>
#include <epan/prefs.h>
-#include <epan/wmem/wmem.h>
#include "packet-ber.h"
#include "packet-pkcs12.h"
@@ -41,10 +43,6 @@
#include "packet-x509if.h"
#include "packet-cms.h"
-#ifdef HAVE_SYS_TIME_H
-#include <sys/time.h>
-#endif
-
#ifdef HAVE_LIBGCRYPT
#include <wsutil/wsgcrypt.h>
#endif