From: fenner Date: Wed, 14 Nov 2001 16:46:34 +0000 (+0000) Subject: Linux does not bit-swap FDDI MAC addresses. X-Git-Tag: tcpdump-3.7.1~35 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/2a090542728794fe1afffef427684e7bee8adf70?ds=sidebyside Linux does not bit-swap FDDI MAC addresses. Submitted by: "Maciej W. Rozycki" --- 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;