From aeb22cae07272212097e7cefcca0a60f06599dab Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 17 Sep 2009 09:10:21 -0700 Subject: s4-pidl: add support for NDR64 Added support for NDR64 to the samba4 pidl generator --- pidl/lib/Parse/Pidl/NDR.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pidl/lib/Parse/Pidl/NDR.pm') diff --git a/pidl/lib/Parse/Pidl/NDR.pm b/pidl/lib/Parse/Pidl/NDR.pm index a36f638092..7aebed0fe2 100644 --- a/pidl/lib/Parse/Pidl/NDR.pm +++ b/pidl/lib/Parse/Pidl/NDR.pm @@ -363,7 +363,10 @@ sub find_largest_alignment($) my $a = 1; if ($e->{POINTERS}) { - $a = 4; + # this is a hack for NDR64 + # the NDR layer translates this into + # an alignment of 4 for NDR and 8 for NDR64 + $a = 5; } elsif (has_property($e, "subcontext")) { $a = 1; } elsif (has_property($e, "transmit_as")) { -- cgit