From 09811706b5ff02cf5f703be7a9cb8c5907e2ca96 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 11 May 2003 01:12:33 +0000 Subject: From Graeme Hewson: fix "eth_hdr" to put the destination and source addresses in the right order. svn path=/trunk/; revision=7662 --- packet-eth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packet-eth.h') diff --git a/packet-eth.h b/packet-eth.h index 82001e8d85..6c2fbe32ad 100644 --- a/packet-eth.h +++ b/packet-eth.h @@ -1,6 +1,6 @@ /* packet-eth.h * - * $Id: packet-eth.h,v 1.9 2003/01/22 01:18:03 sahlberg Exp $ + * $Id: packet-eth.h,v 1.10 2003/05/11 01:12:33 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -25,8 +25,8 @@ #define __PACKET_ETH_H__ typedef struct _eth_hdr { - gchar src[6]; gchar dst[6]; + gchar src[6]; guint16 type; } eth_hdr; -- cgit v1.2.3