From 462ef44745d56dbb00b3e31d12d2ecdc9d309219 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 11 Jan 2005 05:16:43 +0000 Subject: r4673: Fix the IDL for the QuerySecret LSA call. This call uses a new IDL type, NTTIME_hyper. This is 8-byte aligned, as the name suggests. Expand the QuerySecret LSA calls in RPC-SAMLOGON and RPC-LSA, to validate the behaviour of times, and of the old secrets. Thanks to tridge for spotting the use of HYPER! Andrew Bartlett (This used to be commit 1fed79cb0f2ae7940639d08ef99576559d4cd06e) --- source4/build/pidl/util.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/build/pidl') diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm index 189f88de0f..bd87cf4317 100644 --- a/source4/build/pidl/util.pm +++ b/source4/build/pidl/util.pm @@ -301,7 +301,8 @@ my %type_alignments = "WERROR" => 4, "boolean32" => 4, "unsigned32" => 4, - "HYPER_T" => 8 + "HYPER_T" => 8, + "NTTIME_hyper" => 8 ); sub is_scalar_type($) -- cgit