diff options
-rw-r--r-- | dissector.h | 2 | ||||
-rw-r--r-- | proto_vlan.c | 2 | ||||
-rw-r--r-- | vlan.h (renamed from proto_vlan.h) | 9 |
3 files changed, 4 insertions, 9 deletions
diff --git a/dissector.h b/dissector.h index d8ad6ac..52f341b 100644 --- a/dissector.h +++ b/dissector.h @@ -17,7 +17,7 @@ #include "ring.h" #include "tprintf.h" #include "linktype.h" -#include "proto_vlan.h" +#include "vlan.h" #define PRINT_NORM 0 #define PRINT_LESS 1 diff --git a/proto_vlan.c b/proto_vlan.c index c1b3e65..ebdf281 100644 --- a/proto_vlan.c +++ b/proto_vlan.c @@ -10,7 +10,7 @@ #include <netinet/in.h> /* for ntohs() */ #include "proto.h" -#include "proto_vlan.h" +#include "vlan.h" #include "dissector_eth.h" #include "pkt_buff.h" @@ -1,10 +1,5 @@ -/* - * proto_vlan.h - VLAN proto helpers & declarations - * Subject to the GPL, version 2. - */ - -#ifndef PROTO_VLAN_H -#define PROTO_VLAN_H +#ifndef VLAN_H +#define VLAN_H #include <stdbool.h> #include <inttypes.h> |