aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/Makefile.common3
-rw-r--r--epan/dissectors/packet-jxta.h9
2 files changed, 7 insertions, 5 deletions
diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common
index 899af424f2..52c790f616 100644
--- a/epan/dissectors/Makefile.common
+++ b/epan/dissectors/Makefile.common
@@ -343,6 +343,7 @@ DISSECTOR_SRC = \
packet-ismp.c \
packet-isns.c \
packet-isup.c \
+ packet-isup_thin.c \
packet-iua.c \
packet-jabber.c \
packet-juniper.c \
@@ -724,7 +725,7 @@ DISSECTOR_INCLUDES = \
packet-isis.h \
packet-isl.h \
packet-isup.h \
- packey-jxta.h \
+ packet-jxta.h \
packet-kerberos.h \
packet-klm.h \
packet-ldap.h \
diff --git a/epan/dissectors/packet-jxta.h b/epan/dissectors/packet-jxta.h
index 366460603c..0f4cecd036 100644
--- a/epan/dissectors/packet-jxta.h
+++ b/epan/dissectors/packet-jxta.h
@@ -29,7 +29,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+#ifndef __PACKET_JXTA_H__
+#define __PACKET_JXTA_H__
#include <glib.h>
#include <epan/packet.h>
@@ -37,10 +38,10 @@
/**
* Stream Conversation data
**/
-struct jxta_tap_header {
+typedef struct jxta_tap_header{
address src_address;
address dest_address;
guint32 size;
-};
+}jxta_tap_header;
+#endif
-typedef struct jxta_tap_header jxta_tap_header;