diff options
author | Tim Potter <tpot@samba.org> | 2005-09-13 06:39:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:07 -0500 |
commit | 6c22a5bcbd50a2e727e0d8f203f24ec6321d25af (patch) | |
tree | 53645bacdb4c4c304eb9a2fc5169be553cfd8964 /source4/pidl/lib/Parse/Pidl/Ethereal | |
parent | bcc3ce695e9290013ab7fab230a5b0ab27b65ac4 (diff) | |
download | samba-6c22a5bcbd50a2e727e0d8f203f24ec6321d25af.tar.gz samba-6c22a5bcbd50a2e727e0d8f203f24ec6321d25af.tar.bz2 samba-6c22a5bcbd50a2e727e0d8f203f24ec6321d25af.zip |
r10197: Assume that external dissectors are structs which I think is always the
case.
(This used to be commit 515f456facfeb2cd9893ac65dd96cdda16c9d1ca)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/Ethereal')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm index 08acdc4172..4b1dd26876 100644 --- a/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm @@ -294,7 +294,7 @@ sub ElementLevel($$$$$) } else { if ($l->{DATA_TYPE} =~ /^([a-z]+)\_(.*)$/) { - pidl_code "offset = $1_dissect_$2(tvb,offset,pinfo,tree,drep,$hf,$param);"; + pidl_code "offset = $1_dissect_struct_$2(tvb,offset,pinfo,tree,drep,$hf,$param);"; } return; |