diff options
author | Tim Potter <tpot@samba.org> | 2005-09-03 02:08:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:36:26 -0500 |
commit | 40d70b92e0d0ec5d29d975c49a4ca7a62f592f17 (patch) | |
tree | c6caa2aa538f048c1f1a073ae7c89908cefc5fe6 /source4/pidl/lib/Parse/Pidl | |
parent | 563be66ccbd6473212314708cced9d134e2b5f8f (diff) | |
download | samba-40d70b92e0d0ec5d29d975c49a4ca7a62f592f17.tar.gz samba-40d70b92e0d0ec5d29d975c49a4ca7a62f592f17.tar.bz2 samba-40d70b92e0d0ec5d29d975c49a4ca7a62f592f17.zip |
r9984: Honour the NOEMIT conformance directive for entire IDL files.
(This used to be commit 73dffade2c008b26eaf3924d31693c27328b8586)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm index a0e8f4126b..dbaf12b572 100644 --- a/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm @@ -707,6 +707,8 @@ sub Parse($$$$) my($ndr,$idl_file,$h_filename,$cnf_file) = @_; Initialize($cnf_file); + return (undef, undef) if defined($conformance->{noemit_dissector}); + $tabs = ""; %res = (code=>"",def=>"",hdr=>""); |