aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-spice.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-spice.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-spice.c')
-rw-r--r--epan/dissectors/packet-spice.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/dissectors/packet-spice.c b/epan/dissectors/packet-spice.c
index f0322e59cf..50c8c021f8 100644
--- a/epan/dissectors/packet-spice.c
+++ b/epan/dissectors/packet-spice.c
@@ -189,6 +189,7 @@ enum {
VD_AGENT_CAP_GUEST_LINEEND_CRLF = (1 << 9),
};
+#if 0
static const value_string vd_agent_cap_vs[] = {
{ VD_AGENT_CAP_MOUSE_STATE, "VD_AGENT_CAP_MOUSE_STATE" },
{ VD_AGENT_CAP_MONITORS_CONFIG, "VD_AGENT_CAP_MONITORS_CONFIG" },
@@ -202,16 +203,18 @@ static const value_string vd_agent_cap_vs[] = {
{ VD_AGENT_CAP_GUEST_LINEEND_CRLF, "VD_AGENT_CAP_GUEST_LINEEND_CRLF" },
{ 0, NULL }
};
-
+#endif
enum {
VD_AGENT_CONFIG_MONITORS_FLAG_USE_POS = (1 << 0)
};
+#if 0
static const value_string vd_agent_monitors_config_flag_vs[] = {
{ VD_AGENT_CONFIG_MONITORS_FLAG_USE_POS, "VD_AGENT_CONFIG_MONITORS_FLAG_USE_POS"},
{ 0, NULL }
};
+#endif
enum {
VD_AGENT_SUCCESS = 1,