aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcom.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-10-23 06:29:11 +0000
committerBill Meier <wmeier@newsguy.com>2013-10-23 06:29:11 +0000
commit9874da2fcbfb61cd86efd7d60041b6231a088a7f (patch)
treebd137e552635dd9e24c3e113a02e7db71251f831 /epan/dissectors/packet-dcom.c
parentdd314cd97e442decbd8cc0e4bcfd57159ec94bcb (diff)
#if 0 numerous "unused const variables" (mostly value-string-arrays);
Also; fix a few "set but not used" warnings. svn path=/trunk/; revision=52780
Diffstat (limited to 'epan/dissectors/packet-dcom.c')
-rw-r--r--epan/dissectors/packet-dcom.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/dissectors/packet-dcom.c b/epan/dissectors/packet-dcom.c
index c5b75c5162..7495f6cbd9 100644
--- a/epan/dissectors/packet-dcom.c
+++ b/epan/dissectors/packet-dcom.c
@@ -238,8 +238,10 @@ static const e_uuid_t ipid_rem_unknown = { 0x00000131, 0x1234, 0x5678, { 0xCA,
static const e_uuid_t iid_unknown = { 0x00000000, 0x0000, 0x0000, { 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46} };
static const e_uuid_t uuid_null = { 0x00000000, 0x0000, 0x0000, { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00} };
static const e_uuid_t iid_class_factory = { 0x00000001, 0x0000, 0x0000, { 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46} };
+#if 0
static const e_uuid_t iid_act_prop_in = { 0x000001A2, 0x0000, 0x0000, { 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46} };
static const e_uuid_t iid_act_prop_out = { 0x000001A3, 0x0000, 0x0000, { 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46} };
+#endif
static GList *dcom_machines = NULL;
static GList *dcom_interfaces = NULL;
@@ -251,11 +253,13 @@ static const value_string dcom_thisthat_flag_vals[] = {
{ 0, NULL }
};
+#if 0
static const value_string dcom_boolean_flag_vals[] = {
{ 0x00000001, "TRUE" },
{ 0x00000000, "FALSE" },
{ 0, NULL }
};
+#endif
void dcom_interface_dump(void) {
dcom_machine_t *machine;