summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dcerpc-secidmap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-09-30 19:12:26 -0400
committerBill Meier <wmeier@newsguy.com>2014-09-30 23:17:01 +0000
commit01b093c24d53c8304b4e36741a0df00125105795 (patch)
tree172df29bcfb12a6af1c8b5a04516a6374f8c9d97 /epan/dissectors/packet-dcerpc-secidmap.c
parent0cc027cc267952e51e7b17e8e3cef51592f9e013 (diff)
downloadwireshark-01b093c24d53c8304b4e36741a0df00125105795.tar.gz
Add editor modelines; Adjust whitespace as needed.
Change-Id: I434da226c842298f4fb2a4335d06d51e164af2af Reviewed-on: https://code.wireshark.org/review/4394 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-dcerpc-secidmap.c')
-rw-r--r--epan/dissectors/packet-dcerpc-secidmap.c29
1 files changed, 21 insertions, 8 deletions
diff --git a/epan/dissectors/packet-dcerpc-secidmap.c b/epan/dissectors/packet-dcerpc-secidmap.c
index 228dc0672a..804c882097 100644
--- a/epan/dissectors/packet-dcerpc-secidmap.c
+++ b/epan/dissectors/packet-dcerpc-secidmap.c
@@ -46,13 +46,13 @@ static guint16 ver_secidmap = 1;
static dcerpc_sub_dissector secidmap_dissectors[] = {
- { 0, "parse_name", NULL, NULL},
- { 1, "gen_name", NULL, NULL},
- { 2, "avoid_cn_bug", NULL, NULL},
- { 3, "parse_name_cache", NULL, NULL},
- { 4, "gen_name_cache", NULL, NULL},
+ { 0, "parse_name", NULL, NULL},
+ { 1, "gen_name", NULL, NULL},
+ { 2, "avoid_cn_bug", NULL, NULL},
+ { 3, "parse_name_cache", NULL, NULL},
+ { 4, "gen_name_cache", NULL, NULL},
- { 0, NULL, NULL, NULL },
+ { 0, NULL, NULL, NULL },
};
void
@@ -75,6 +75,19 @@ proto_register_secidmap (void)
void
proto_reg_handoff_secidmap (void)
{
- /* Register the protocol as dcerpc */
- dcerpc_init_uuid (proto_secidmap, ett_secidmap, &uuid_secidmap, ver_secidmap, secidmap_dissectors, hf_secidmap_opnum);
+ /* Register the protocol as dcerpc */
+ dcerpc_init_uuid (proto_secidmap, ett_secidmap, &uuid_secidmap, ver_secidmap, secidmap_dissectors, hf_secidmap_opnum);
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */