diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-17 06:43:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-17 06:43:21 +0000 |
commit | 2aa31bea479aec05bd9fe0f8b874f5c1189dda16 (patch) | |
tree | d6107376566a1a3942faf8cf3d2a7260a9f507d9 /packet-pppoe.c | |
parent | c5aaac7823896a3dba279c92b6ae9eb5cd503a9e (diff) | |
download | wireshark-2aa31bea479aec05bd9fe0f8b874f5c1189dda16.tar.gz wireshark-2aa31bea479aec05bd9fe0f8b874f5c1189dda16.tar.bz2 wireshark-2aa31bea479aec05bd9fe0f8b874f5c1189dda16.zip |
Move the declaration of "etype_vals[]" from "epan/packet.h" to
"etypes.h".
svn path=/trunk/; revision=3314
Diffstat (limited to 'packet-pppoe.c')
-rw-r--r-- | packet-pppoe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-pppoe.c b/packet-pppoe.c index d4958926a8..8892b16c89 100644 --- a/packet-pppoe.c +++ b/packet-pppoe.c @@ -1,7 +1,7 @@ /* packet-pppoe.c * Routines for PPP Over Ethernet (PPPoE) packet disassembly (RFC2516) * - * $Id: packet-pppoe.c,v 1.17 2001/03/30 06:10:54 guy Exp $ + * $Id: packet-pppoe.c,v 1.18 2001/04/17 06:43:19 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -32,9 +32,9 @@ #endif #include <glib.h> -#include "etypes.h" #include "packet.h" #include "strutil.h" +#include "etypes.h" static int proto_pppoed = -1; |