From e66f10b12571769aa147f93b114469a5e48a1c39 Mon Sep 17 00:00:00 2001 From: Jakub Zawadzki Date: Sun, 29 Jul 2012 16:12:17 +0000 Subject: [PATCH] Try to fix ABI check. svn path=/trunk/; revision=44107 --- asn1/nbap/packet-nbap-template.h | 3 +++ epan/dissectors/packet-nbap.h | 3 +++ epan/dissectors/packet-rlc.h | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/asn1/nbap/packet-nbap-template.h b/asn1/nbap/packet-nbap-template.h index f0208c3c7c..d604c8eca2 100644 --- a/asn1/nbap/packet-nbap-template.h +++ b/asn1/nbap/packet-nbap-template.h @@ -24,6 +24,9 @@ #ifndef PACKET_NBAP_H #define PACKET_NBAP_H +#include "packet-rlc.h" +#include "packet-umts_mac.h" + /* * Ericsson specific mapping for various dissector settings. * Must be altered for other equipment. diff --git a/epan/dissectors/packet-nbap.h b/epan/dissectors/packet-nbap.h index 018aba0d9e..05c7432e2a 100644 --- a/epan/dissectors/packet-nbap.h +++ b/epan/dissectors/packet-nbap.h @@ -32,6 +32,9 @@ #ifndef PACKET_NBAP_H #define PACKET_NBAP_H +#include "packet-rlc.h" +#include "packet-umts_mac.h" + /* * Ericsson specific mapping for various dissector settings. * Must be altered for other equipment. diff --git a/epan/dissectors/packet-rlc.h b/epan/dissectors/packet-rlc.h index 8be8b1ac2a..f48671b298 100644 --- a/epan/dissectors/packet-rlc.h +++ b/epan/dissectors/packet-rlc.h @@ -21,6 +21,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifndef PACKET_RLC_H +#define PACKET_RLC_H + /* Do not change enum order and append only to keep backward compatibility with UDP framing format */ enum rlc_mode { @@ -118,3 +121,4 @@ typedef struct rlc_info /*Tells other functions if this packet i ciphered or not*/ gboolean rlc_is_ciphered(packet_info * pinfo); +#endif /* PACKET_RLC_H */