aboutsummaryrefslogtreecommitdiffstats
path: root/packet-eth.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-05-11 01:12:33 +0000
committerGuy Harris <guy@alum.mit.edu>2003-05-11 01:12:33 +0000
commit09811706b5ff02cf5f703be7a9cb8c5907e2ca96 (patch)
tree9614f4e798925c8e23170df296265ac36d9ace07 /packet-eth.h
parentfa5180534065eb1570498155f34f486586d93438 (diff)
From Graeme Hewson: fix "eth_hdr" to put the destination and source
addresses in the right order. svn path=/trunk/; revision=7662
Diffstat (limited to 'packet-eth.h')
-rw-r--r--packet-eth.h4
1 files changed, 2 insertions, 2 deletions
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 <gerald@ethereal.com>
@@ -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;