diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-02-10 23:34:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:41 -0500 |
commit | af7e9f2b5907a36d0d3c454d9ba9e49f98a11426 (patch) | |
tree | c8001af267f36f9054902f4aa63fc48dd84024ee /source4/build/pidl/header.pm | |
parent | 341395db51fb69c8bb0817ff3b59b6166c02966f (diff) | |
download | samba-af7e9f2b5907a36d0d3c454d9ba9e49f98a11426.tar.gz samba-af7e9f2b5907a36d0d3c454d9ba9e49f98a11426.tar.bz2 samba-af7e9f2b5907a36d0d3c454d9ba9e49f98a11426.zip |
r5319: Make some more alignment code generic, move NDR-specific stuff to
parser.pm (now renamed to ndr.pm).
(This used to be commit a469a5fefb4e6941264c11f4bde60eab71f6f7aa)
Diffstat (limited to 'source4/build/pidl/header.pm')
-rw-r--r-- | source4/build/pidl/header.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/header.pm b/source4/build/pidl/header.pm index 21c86bd8b0..c6b5fef3d3 100644 --- a/source4/build/pidl/header.pm +++ b/source4/build/pidl/header.pm @@ -190,7 +190,7 @@ sub HeaderType($$$) } elsif (util::is_bitmap($e->{TYPE})) { my $bitmap = util::get_bitmap($e->{TYPE}); $res .= util::bitmap_type_decl($bitmap); - } elsif (util::is_scalar_type($data)) { + } elsif (NdrParser::is_scalar_type($data)) { $res .= util::map_type($data); } elsif (util::has_property($e, "switch_is")) { $res .= "union $data"; |