Fix a typo and add an ifdef

svn path=/trunk/; revision=14562
This commit is contained in:
Anders Broman 2005-06-06 17:07:04 +00:00
parent e490b40a24
commit 44ef4de0d5
2 changed files with 7 additions and 5 deletions

View File

@ -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 \

View File

@ -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;