summaryrefslogtreecommitdiff
path: root/print-fddi.c
diff options
context:
space:
mode:
authorfenner <fenner>2001-11-14 16:46:34 +0000
committerfenner <fenner>2001-11-14 16:46:34 +0000
commit2a090542728794fe1afffef427684e7bee8adf70 (patch)
treec5427efefbc02a9c1bfb771f1a7cc7827559f1bc /print-fddi.c
parent5ec294fcce0f489b66dcc7b8eb11e5dda31d7062 (diff)
downloadtcpdump-2a090542728794fe1afffef427684e7bee8adf70.tar.gz
Linux does not bit-swap FDDI MAC addresses.
Submitted by: "Maciej W. Rozycki" <macro@ds2.pg.gda.pl>
Diffstat (limited to 'print-fddi.c')
-rw-r--r--print-fddi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-fddi.c b/print-fddi.c
index c1e3e208..71cdb309 100644
--- a/print-fddi.c
+++ b/print-fddi.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-fddi.c,v 1.52 2001-09-18 15:46:36 fenner Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-fddi.c,v 1.53 2001-11-14 16:46:34 fenner Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -52,7 +52,7 @@ static const char rcsid[] =
/*
* Some FDDI interfaces use bit-swapped addresses.
*/
-#if defined(ultrix) || defined(__alpha) || defined(__bsdi) || defined(__NetBSD__)
+#if defined(ultrix) || defined(__alpha) || defined(__bsdi) || defined(__NetBSD__) || defined(__linux__)
int fddi_bitswap = 0;
#else
int fddi_bitswap = 1;