diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-20 07:07:09 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-20 07:07:09 +0000 |
commit | e2254cc18f41b0da449abd389b682fc9fcb8da6b (patch) | |
tree | 5812745887b2ea3e590cf00ff4ea94e479069102 /source4/build/pidl | |
parent | 08026ca1e05ef84cc8017ab632c08dfff7bdd98f (diff) | |
download | samba-e2254cc18f41b0da449abd389b682fc9fcb8da6b.tar.gz samba-e2254cc18f41b0da449abd389b682fc9fcb8da6b.tar.bz2 samba-e2254cc18f41b0da449abd389b682fc9fcb8da6b.zip |
fixed pushing structures containing pointers inside unions
(This used to be commit bb30f42cd4e20d53066634727347a601b4eb562e)
Diffstat (limited to 'source4/build/pidl')
-rw-r--r-- | source4/build/pidl/parser.pm | 2 |
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"; } |