diff options
Diffstat (limited to '')
-rw-r--r-- | epan/dissectors/packet-dcerpc-rs_unix.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-rs_unix.c b/epan/dissectors/packet-dcerpc-rs_unix.c index e6f7f1b4..9f6ae95f 100644 --- a/epan/dissectors/packet-dcerpc-rs_unix.c +++ b/epan/dissectors/packet-dcerpc-rs_unix.c @@ -21,17 +21,17 @@ void proto_register_rs_unix (void); void proto_reg_handoff_rs_unix (void); -static int proto_rs_unix = -1; -static int hf_rs_unix_opnum = -1; +static int proto_rs_unix; +static int hf_rs_unix_opnum; -static gint ett_rs_unix = -1; +static int ett_rs_unix; static e_guid_t uuid_rs_unix = { 0x361993c0, 0xb000, 0x0000, { 0x0d, 0x00, 0x00, 0x87, 0x84, 0x00, 0x00, 0x00 } }; -static guint16 ver_rs_unix = 1; +static uint16_t ver_rs_unix = 1; -static dcerpc_sub_dissector rs_unix_dissectors[] = { +static const dcerpc_sub_dissector rs_unix_dissectors[] = { { 0, "getpwents", NULL, NULL }, { 0, NULL, NULL, NULL }, }; @@ -45,7 +45,7 @@ proto_register_rs_unix (void) NULL, 0x0, NULL, HFILL }} }; - static gint *ett[] = { + static int *ett[] = { &ett_rs_unix, }; proto_rs_unix = proto_register_protocol ("DCE/RPC RS_UNIX", "RS_UNIX", "rs_unix"); |