From e2254cc18f41b0da449abd389b682fc9fcb8da6b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 20 Nov 2003 07:07:09 +0000 Subject: fixed pushing structures containing pointers inside unions (This used to be commit bb30f42cd4e20d53066634727347a601b4eb562e) --- source4/build/pidl/parser.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } -- cgit