diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-11 01:59:28 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-11 01:59:28 +0000 |
commit | be443f914af377fc97d4cfd56f13d95edbcc645f (patch) | |
tree | 6d5af6e49984f5b53492f313445eb5a4ca6c5fbe /source4/build/pidl/pidl.pl | |
parent | 657dc577b614f388b55bd52a16e8e014c72bf2db (diff) | |
download | samba-be443f914af377fc97d4cfd56f13d95edbcc645f.tar.gz samba-be443f914af377fc97d4cfd56f13d95edbcc645f.tar.bz2 samba-be443f914af377fc97d4cfd56f13d95edbcc645f.zip |
- added support for the pull side of unions
- don't generate parse functions for pull/push functions that are not
used
(This used to be commit 54613574bcd8b365c13848c6aa9366cadeb5da0e)
Diffstat (limited to 'source4/build/pidl/pidl.pl')
-rwxr-xr-x | source4/build/pidl/pidl.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/pidl.pl b/source4/build/pidl/pidl.pl index 8d15d86347..cd2ad9d7fc 100755 --- a/source4/build/pidl/pidl.pl +++ b/source4/build/pidl/pidl.pl @@ -123,7 +123,7 @@ if ($opt_header) { my($idl) = util::LoadStructure($pidl_file); my($header) = util::ChangeExtension($opt_output, "h"); print "Generating $header\n"; - util::FileSave($header, IdlHeader::Dump($idl)); + util::FileSave($header, IdlHeader::Parse($idl)); } if ($opt_parser) { |