summaryrefslogtreecommitdiff
path: root/source4/build/pidl/eparser.pm
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-01-05 00:09:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:08:18 -0500
commitb90c0850fc01574b89e1cd0da0af43879e7ba6d7 (patch)
tree33f3eb64e50c27ef85410c68990f89d2ea737b3c /source4/build/pidl/eparser.pm
parent7588a01cb6d387440d778e3bd77225b287cf48bc (diff)
downloadsamba-b90c0850fc01574b89e1cd0da0af43879e7ba6d7.tar.gz
samba-b90c0850fc01574b89e1cd0da0af43879e7ba6d7.tar.bz2
samba-b90c0850fc01574b89e1cd0da0af43879e7ba6d7.zip
r4521: fixed up the handling of PROPERTIES elements after the change to support enum
(This used to be commit dee8eff2590be58c59b0db089fcca4af3e011c42)
Diffstat (limited to 'source4/build/pidl/eparser.pm')
-rw-r--r--source4/build/pidl/eparser.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm
index 0038f53123..83dc90408e 100644
--- a/source4/build/pidl/eparser.pm
+++ b/source4/build/pidl/eparser.pm
@@ -27,7 +27,7 @@ sub fn_prefix($)
{
my $fn = shift;
if ($fn->{TYPE} eq "TYPEDEF") {
- if (util::has_property($fn->{DATA}, "public")) {
+ if (util::has_property($fn, "public")) {
return "";
}
}
@@ -166,7 +166,7 @@ sub NeededFunction($)
sub NeededTypedef($)
{
my $t = shift;
- if (util::has_property($t->{DATA}, "public")) {
+ if (util::has_property($t, "public")) {
$needed{"pull_$t->{NAME}"} = 1;
}
@@ -277,7 +277,7 @@ sub ParseHeader($$)
# unions.
if ($d->{TYPE} eq "TYPEDEF" and
- util::has_property($d->{DATA}, "public")) {
+ util::has_property($d, "public")) {
if ($d->{DATA}{TYPE} eq "STRUCT") {
pidl "void ndr_pull_$d->{NAME}(struct ndr_pull *ndr, int ndr_flags, proto_tree *tree, struct $d->{NAME} *r);\n\n";