aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-miop.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-10-16 20:35:08 +0000
committerBill Meier <wmeier@newsguy.com>2013-10-16 20:35:08 +0000
commit80b5c92af03844f3a57044f690ef781282def484 (patch)
tree224b1b866c65d58d6f4d7cee31dd3ddf4ddf4c40 /epan/dissectors/packet-miop.c
parent94ba4e9875cf8e2ae777f9560e19ae816b5a9fa7 (diff)
Remove trailing blanks; Fix some indentation;
Add editor modelines. svn path=/trunk/; revision=52653
Diffstat (limited to 'epan/dissectors/packet-miop.c')
-rw-r--r--epan/dissectors/packet-miop.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/epan/dissectors/packet-miop.c b/epan/dissectors/packet-miop.c
index 2163a520fe..b636554511 100644
--- a/epan/dissectors/packet-miop.c
+++ b/epan/dissectors/packet-miop.c
@@ -82,7 +82,7 @@ static gint ett_miop = -1;
static expert_field ei_miop_version_not_supported = EI_INIT;
static expert_field ei_miop_unique_id_len_exceed_max_value = EI_INIT;
-#define MIOP_MAGIC 0x4d494f50 /* "MIOP" */
+#define MIOP_MAGIC 0x4d494f50 /* "MIOP" */
static void dissect_miop (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree);
@@ -318,3 +318,16 @@ void proto_reg_handoff_miop (void) {
heur_dissector_add("udp", dissect_miop_heur, proto_miop);
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 2
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=2 tabstop=8 expandtab:
+ * :indentSize=2:tabSize=8:noTabs=true:
+ */