diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-11-05 00:03:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:24:51 -0500 |
commit | ae0219cd8148bd01179f1686e8e12cf3ccdbf1a9 (patch) | |
tree | 89a1a6ee95db2fd053c2e8df13f1a0d6baaa6441 | |
parent | 5b9f1b01ba6880ead4662bb66988bcdf5bf2aa82 (diff) | |
download | samba-ae0219cd8148bd01179f1686e8e12cf3ccdbf1a9.tar.gz samba-ae0219cd8148bd01179f1686e8e12cf3ccdbf1a9.tar.bz2 samba-ae0219cd8148bd01179f1686e8e12cf3ccdbf1a9.zip |
r19560: Fix handling of PARAM_VALUE.
(This used to be commit dde3d5342cd8b67ec4a0929f3e5577d6b1e7d16b)
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Wireshark/NDR.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Wireshark/NDR.pm b/source4/pidl/lib/Parse/Pidl/Wireshark/NDR.pm index 5af7c02032..f72efc7534 100644 --- a/source4/pidl/lib/Parse/Pidl/Wireshark/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Wireshark/NDR.pm @@ -263,7 +263,7 @@ sub ElementLevel($$$$$$) my $param = 0; if (defined($conformance->{dissectorparams}->{$myname})) { - $conformance->{dissectorparams}->{$myname}->{PARAM} = 1; +# $conformance->{dissectorparams}->{$myname}->{PARAM} = 1; $param = $conformance->{dissectorparams}->{$myname}->{PARAM}; } @@ -426,6 +426,8 @@ sub Function($$$) my $fn_name = $_->{NAME}; $fn_name =~ s/^${ifname}_//; + print "$fn_name\n"; + PrintIdl DumpFunction($fn->{ORIGINAL}); pidl_fn_start "$ifname\_dissect\_$fn_name\_response"; pidl_code "static int"; |