diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-08-26 05:09:56 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-08-26 05:09:56 +0000 |
commit | 42fdef2ff460e460016b841b640f47bee0bb8f21 (patch) | |
tree | 7f78a504b7f603c7743906a8f72d7dfba29e2392 /Makefile.am | |
parent | be83b4d48706573595974b8e09a686c3c2b96097 (diff) | |
download | wireshark-42fdef2ff460e460016b841b640f47bee0bb8f21.tar.gz wireshark-42fdef2ff460e460016b841b640f47bee0bb8f21.tar.bz2 wireshark-42fdef2ff460e460016b841b640f47bee0bb8f21.zip |
Extract the CRC-32 code from the 802.11 dissector into a separate file,
and use it in the Ethernet dissector as well, to check the FCS in
Ethernet frames, if present.
svn path=/trunk/; revision=8265
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7eb27b5a8a..156c9588a9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for Ethereal # -# $Id: Makefile.am,v 1.612 2003/08/23 07:23:12 guy Exp $ +# $Id: Makefile.am,v 1.613 2003/08/26 05:09:55 guy Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@ethereal.com> @@ -710,6 +710,8 @@ ETHEREAL_COMMON_SRC = \ column.h \ conditions.c \ conditions.h \ + crc32.c \ + crc32.h \ crypt-des.c \ crypt-des.h \ crypt-md4.c \ |