]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Linux does not bit-swap FDDI MAC addresses.
authorfenner <fenner>
Wed, 14 Nov 2001 16:46:34 +0000 (16:46 +0000)
committerfenner <fenner>
Wed, 14 Nov 2001 16:46:34 +0000 (16:46 +0000)
Submitted by: "Maciej W. Rozycki" <[email protected]>

print-fddi.c

index c1e3e2085a59780d155659da2335364a5ffec6b3..71cdb3098f0391023ad0bf1a84c57aeb1e37da02 100644 (file)
@@ -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;