aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-csm-encaps.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-csm-encaps.c')
-rw-r--r--epan/dissectors/packet-csm-encaps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-csm-encaps.c b/epan/dissectors/packet-csm-encaps.c
index f0a5677151..6fe19afef7 100644
--- a/epan/dissectors/packet-csm-encaps.c
+++ b/epan/dissectors/packet-csm-encaps.c
@@ -177,11 +177,11 @@ csm_to_host(guint16 fc, guint16 ct)
{
if (fc == 0x0000)
{
- return (match_strval(ct, exclusive_to_host_ct_vals) != NULL);
+ return (try_val_to_str(ct, exclusive_to_host_ct_vals) != NULL);
}
else
{
- return (match_strval(fc, exclusive_to_host_vals) != NULL);
+ return (try_val_to_str(fc, exclusive_to_host_vals) != NULL);
}
}