aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-rs_pwd_mgmt.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-rs_pwd_mgmt.c
parent0cc027cc267952e51e7b17e8e3cef51592f9e013 (diff)
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-rs_pwd_mgmt.c')
-rw-r--r--epan/dissectors/packet-dcerpc-rs_pwd_mgmt.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/epan/dissectors/packet-dcerpc-rs_pwd_mgmt.c b/epan/dissectors/packet-dcerpc-rs_pwd_mgmt.c
index bcb230925d..27d380a0cd 100644
--- a/epan/dissectors/packet-dcerpc-rs_pwd_mgmt.c
+++ b/epan/dissectors/packet-dcerpc-rs_pwd_mgmt.c
@@ -41,7 +41,7 @@ static int hf_rs_pwd_mgmt_opnum = -1;
static gint ett_rs_pwd_mgmt = -1;
static e_uuid_t uuid_rs_pwd_mgmt =
{ 0x3139a0e2, 0x68da, 0x11cd, {0x91, 0xc7, 0x08, 0x00, 0x09, 0x24, 0x24,
- 0x44} };
+ 0x44} };
static guint16 ver_rs_pwd_mgmt = 1;
@@ -73,7 +73,7 @@ proto_register_rs_pwd_mgmt (void)
};
proto_rs_pwd_mgmt =
proto_register_protocol ("DCE/RPC Registry Password Management",
- "rs_pwd_mgmt", "rs_pwd_mgmt");
+ "rs_pwd_mgmt", "rs_pwd_mgmt");
proto_register_field_array (proto_rs_pwd_mgmt, hf, array_length (hf));
proto_register_subtree_array (ett, array_length (ett));
}
@@ -83,6 +83,19 @@ proto_reg_handoff_rs_pwd_mgmt (void)
{
/* Register the protocol as dcerpc */
dcerpc_init_uuid (proto_rs_pwd_mgmt, ett_rs_pwd_mgmt, &uuid_rs_pwd_mgmt,
- ver_rs_pwd_mgmt, rs_pwd_mgmt_dissectors,
- hf_rs_pwd_mgmt_opnum);
+ ver_rs_pwd_mgmt, rs_pwd_mgmt_dissectors,
+ hf_rs_pwd_mgmt_opnum);
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local Variables:
+ * c-basic-offset: 2
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=2 tabstop=8 expandtab:
+ * :indentSize=2:tabSize=8:noTabs=true:
+ */