summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-20 07:07:09 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-20 07:07:09 +0000
commite2254cc18f41b0da449abd389b682fc9fcb8da6b (patch)
tree5812745887b2ea3e590cf00ff4ea94e479069102
parent08026ca1e05ef84cc8017ab632c08dfff7bdd98f (diff)
downloadsamba-e2254cc18f41b0da449abd389b682fc9fcb8da6b.tar.gz
samba-e2254cc18f41b0da449abd389b682fc9fcb8da6b.tar.bz2
samba-e2254cc18f41b0da449abd389b682fc9fcb8da6b.zip
fixed pushing structures containing pointers inside unions
(This used to be commit bb30f42cd4e20d53066634727347a601b4eb562e)
-rw-r--r--source4/build/pidl/parser.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/parser.pm b/source4/build/pidl/parser.pm
index 78c5a5944d..3724a5cac6 100644
--- a/source4/build/pidl/parser.pm
+++ b/source4/build/pidl/parser.pm
@@ -715,7 +715,7 @@ sub ParseUnionPush($)
pidl "\tcase $el->{CASE}:\n";
}
if ($el->{TYPE} eq "UNION_ELEMENT") {
- ParseElementPushBuffer($el->{DATA}, "r->", "ndr_flags");
+ ParseElementPushBuffer($el->{DATA}, "r->", "NDR_BUFFERS");
}
pidl "\tbreak;\n\n";
}