diff options
Diffstat (limited to 'epan/dissectors/packet-dcerpc-llb.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc-llb.c | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dcerpc-llb.c b/epan/dissectors/packet-dcerpc-llb.c index 0988bde5b7..b0e49079df 100644 --- a/epan/dissectors/packet-dcerpc-llb.c +++ b/epan/dissectors/packet-dcerpc-llb.c @@ -43,7 +43,7 @@ static gint ett_llb = -1; static e_uuid_t uuid_llb = { 0x333b33c3, 0x0000, 0x0000, {0x0d, 0x00, 0x00, 0x87, 0x84, 0x00, 0x00, - 0x00} }; + 0x00} }; static guint16 ver_llb = 4; @@ -68,7 +68,7 @@ proto_register_llb (void) }; proto_llb = proto_register_protocol ("DCE/RPC NCS 1.5.1 Local Location Broker", "llb", - "llb"); + "llb"); proto_register_field_array (proto_llb, hf, array_length (hf)); proto_register_subtree_array (ett, array_length (ett)); } @@ -78,5 +78,18 @@ proto_reg_handoff_llb (void) { /* Register the protocol as dcerpc */ dcerpc_init_uuid (proto_llb, ett_llb, &uuid_llb, ver_llb, llb_dissectors, - hf_llb_opnum); + hf_llb_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: + */ |