aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-hsr-prp-supervision.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-09-29 14:07:49 -0400
committerBill Meier <wmeier@newsguy.com>2014-09-29 18:21:50 +0000
commitff5a77256c1987e6aeac6cb032a25fd43d3d8929 (patch)
tree6a2172f6fb16c2be06ab9a74790fdbe6036a5632 /epan/dissectors/packet-hsr-prp-supervision.c
parent1c055f5b1d31a2b10135ce67467c71af6a42fd6d (diff)
Add editor modelines and adjust indentation as needed.
Change-Id: Id57d264299f2026d703c5b08bace4b24b32f184c Reviewed-on: https://code.wireshark.org/review/4371 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-hsr-prp-supervision.c')
-rw-r--r--epan/dissectors/packet-hsr-prp-supervision.c29
1 files changed, 21 insertions, 8 deletions
diff --git a/epan/dissectors/packet-hsr-prp-supervision.c b/epan/dissectors/packet-hsr-prp-supervision.c
index 8e805dcc63..348a791fde 100644
--- a/epan/dissectors/packet-hsr-prp-supervision.c
+++ b/epan/dissectors/packet-hsr-prp-supervision.c
@@ -36,14 +36,14 @@ void proto_reg_handoff_hsr_prp_supervision(void);
/**********************************************************/
static const value_string type_vals[] = {
- {20, "PRP Node (Duplicate Discard)"},
- {21, "PRP Node (Duplicate Accept)"},
- {22, "Obsolete TLV value"},
- {23, "HSR Node"},
- {30, "Redundancy Box MAC Address"},
- {31, "Virtual Dual Attached Node"},
- {0, "End of TLVs"},
- {0, NULL}
+ {20, "PRP Node (Duplicate Discard)"},
+ {21, "PRP Node (Duplicate Accept)"},
+ {22, "Obsolete TLV value"},
+ {23, "HSR Node"},
+ {30, "Redundancy Box MAC Address"},
+ {31, "Virtual Dual Attached Node"},
+ {0, "End of TLVs"},
+ {0, NULL}
};
/**********************************************************/
@@ -256,3 +256,16 @@ void proto_reg_handoff_hsr_prp_supervision(void)
hsr_prp_supervision_handle = create_dissector_handle(dissect_hsr_prp_supervision, proto_hsr_prp_supervision);
dissector_add_uint("ethertype", ETHERTYPE_PRP, hsr_prp_supervision_handle);
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */