aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vlan.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2010-01-02 05:07:22 +0000
committerStephen Fisher <steve@stephen-fisher.com>2010-01-02 05:07:22 +0000
commit02a69c193522d69060008add5b7b77387dad123d (patch)
treec978b203129288264f32bab4b80f15a13bddf610 /epan/dissectors/packet-vlan.c
parent4f0203b47effc245265d1744ced11a9092d57a6f (diff)
Oops. Capitalize the D in 802.1D.
svn path=/trunk/; revision=31407
Diffstat (limited to 'epan/dissectors/packet-vlan.c')
-rw-r--r--epan/dissectors/packet-vlan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-vlan.c b/epan/dissectors/packet-vlan.c
index 5c3243ff95..d96f945c41 100644
--- a/epan/dissectors/packet-vlan.c
+++ b/epan/dissectors/packet-vlan.c
@@ -51,7 +51,7 @@ static int hf_vlan_trailer = -1;
static gint ett_vlan = -1;
-/* From Table G-2 of IEEE standard 802.1d-2004 */
+/* From Table G-2 of IEEE standard 802.1D-2004 */
static const value_string pri_vals[] = {
{ 1, "Background" },
{ 2, "Spare" },
@@ -164,7 +164,7 @@ proto_register_vlan(void)
static hf_register_info hf[] = {
{ &hf_vlan_priority, {
"Priority", "vlan.priority", FT_UINT16, BASE_DEC,
- VALS(pri_vals), 0xE000, "Descriptions are recommendations from IEEE standard 802.1d-2004", HFILL }},
+ VALS(pri_vals), 0xE000, "Descriptions are recommendations from IEEE standard 802.1D-2004", HFILL }},
{ &hf_vlan_cfi, {
"CFI", "vlan.cfi", FT_UINT16, BASE_DEC,
VALS(cfi_vals), 0x1000, "Canonical Format Identifier", HFILL }},