diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-03-09 06:34:59 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-03-09 06:34:59 +0000 |
commit | 561f935663219ca1cf8416f5bd1408f47992bd5c (patch) | |
tree | 899e31cb615fee46cd1919d00db4ccd81218b789 | |
parent | 64a43e1c0e6fdceecfbad405344968af8ecf36c3 (diff) | |
download | wireshark-561f935663219ca1cf8416f5bd1408f47992bd5c.tar.gz wireshark-561f935663219ca1cf8416f5bd1408f47992bd5c.tar.bz2 wireshark-561f935663219ca1cf8416f5bd1408f47992bd5c.zip |
Include "etherpeek.h", which declares routines we define, not "snoop.h",
which declares routines we neither define nor use.
svn path=/trunk/; revision=3121
-rw-r--r-- | wiretap/etherpeek.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/etherpeek.c b/wiretap/etherpeek.c index fab2bd765f..6fa81e8aff 100644 --- a/wiretap/etherpeek.c +++ b/wiretap/etherpeek.c @@ -2,7 +2,7 @@ * Routines for opening etherpeek files * Copyright (c) 2001, Daniel Thompson <d.thompson@gmx.net> * - * $Id: etherpeek.c,v 1.1 2001/02/22 22:03:31 guy Exp $ + * $Id: etherpeek.c,v 1.2 2001/03/09 06:34:59 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org> @@ -31,7 +31,7 @@ #include "wtap-int.h" #include "file_wrappers.h" #include "buffer.h" -#include "snoop.h" +#include "etherpeek.h" #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif |