aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-11-03 11:46:18 -0800
committerGuy Harris <guy@alum.mit.edu>2014-11-03 19:46:51 +0000
commitd993cdd4496395171b180aed6ba394cfb047db71 (patch)
tree0ec86559adfa32afe8fc596f9e13ffb1deff6050 /tools
parent0139ac87d06779ce06c4db8e42f127e698877bb1 (diff)
insure that we have an entire match for the variable name
Pick up patch from Samba: commit fa331f64d1a40350496c7acf68c20cb3fead6eaf Author: Matthieu Patou <mat@matws.net> Date: Thu Oct 3 09:45:19 2013 -0700 pidl-wireshark: insure that we have an entire match for the variable name Change-Id: I1e730dfb3b9eb96a4cda34659297fddeac7801c8 Reviewed-on: https://code.wireshark.org/review/5095 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'tools')
-rw-r--r--tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm b/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
index 06793808a6..3f08c67926 100644
--- a/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
+++ b/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
@@ -646,7 +646,7 @@ sub Struct($$$$)
my $switch_info = undef;
my $v = $_->{NAME};
- if (scalar(grep {/$v/} keys(%$varswitchs)) == 1) {
+ if (scalar(grep {/^$v$/} keys(%$varswitchs)) == 1) {
# This element is one of the switch attribute
my $switch_dt = getType($_->{TYPE});
my $switch_type;