aboutsummaryrefslogtreecommitdiffstats
path: root/text2pcap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-27 02:31:00 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-27 02:31:00 +0000
commit1697aac42993aeee85cb4fa51ee50c06a806e7d9 (patch)
tree097717028bbacaabbe228631d9b245f9a7c3c69b /text2pcap.c
parentdd4aa69e832a4dfa3fdf2ba57f3f1913a3b8eac5 (diff)
From Jason Copenhaver: put the address fields in the Ethernet header in
the right order. svn path=/trunk/; revision=7208
Diffstat (limited to 'text2pcap.c')
-rw-r--r--text2pcap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/text2pcap.c b/text2pcap.c
index 805e5ea93b..5a9d5ace53 100644
--- a/text2pcap.c
+++ b/text2pcap.c
@@ -6,7 +6,7 @@
*
* (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com>
*
- * $Id: text2pcap.c,v 1.24 2002/10/17 20:02:00 guy Exp $
+ * $Id: text2pcap.c,v 1.25 2003/02/27 02:30:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -211,8 +211,8 @@ static const char *token_str[] = {"",
/* ----- Skeleton Packet Headers --------------------------------------------------*/
typedef struct {
- guint8 src_addr[6];
guint8 dest_addr[6];
+ guint8 src_addr[6];
guint16 l3pid;
} hdr_ethernet_t;