aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-rras.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-10-05 15:57:05 -0400
committerBill Meier <wmeier@newsguy.com>2014-10-05 20:19:02 +0000
commit0b18d6cb77022494a875e6e0d9d2ad27fb6ac6d9 (patch)
tree8cb06839ae3a921f3238c5979da986e4c0358638 /epan/dissectors/packet-dcerpc-rras.c
parente2bdfa101b4a60318c9d7ba3dc3487418b5951b6 (diff)
Add editor modelines; Adjust whitespace as needed.
Change-Id: I6e70c933ae61a97377235d67b2f6a1b3d67dc155 Reviewed-on: https://code.wireshark.org/review/4484 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-dcerpc-rras.c')
-rw-r--r--epan/dissectors/packet-dcerpc-rras.c25
1 files changed, 19 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-rras.c b/epan/dissectors/packet-dcerpc-rras.c
index f6f7f2d7c7..f1066c8fa5 100644
--- a/epan/dissectors/packet-dcerpc-rras.c
+++ b/epan/dissectors/packet-dcerpc-rras.c
@@ -124,7 +124,7 @@ static dcerpc_sub_dissector dcerpc_rras_dissectors[] = {
{ RRAS_RI_GET_CRED_EX, "RouterInterfaceGetCredentialsEx", NULL, NULL },
{ RRAS_ADMIN_CONNECTION_REM_QUARANT,
"RasAdminConnectionRemoveQuarantine", NULL, NULL },
- { 0, NULL, NULL, NULL }
+ { 0, NULL, NULL, NULL }
};
@@ -132,7 +132,7 @@ void
proto_register_dcerpc_rras(void)
{
- static hf_register_info hf[] = {
+ static hf_register_info hf[] = {
{ &hf_rras_opnum,
{ "Operation", "rras.opnum", FT_UINT16, BASE_DEC,
@@ -140,9 +140,9 @@ proto_register_dcerpc_rras(void)
};
- static gint *ett[] = {
- &ett_dcerpc_rras,
- };
+ static gint *ett[] = {
+ &ett_dcerpc_rras,
+ };
proto_dcerpc_rras = proto_register_protocol(
@@ -150,7 +150,7 @@ proto_register_dcerpc_rras(void)
proto_register_field_array(proto_dcerpc_rras, hf, array_length(hf));
- proto_register_subtree_array(ett, array_length(ett));
+ proto_register_subtree_array(ett, array_length(ett));
}
@@ -164,3 +164,16 @@ proto_reg_handoff_dcerpc_rras(void)
proto_dcerpc_rras, ett_dcerpc_rras, &uuid_dcerpc_rras,
ver_dcerpc_rras, dcerpc_rras_dissectors, hf_rras_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:
+ */