diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-01-11 05:16:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:40 -0500 |
commit | 462ef44745d56dbb00b3e31d12d2ecdc9d309219 (patch) | |
tree | a68bd379a6054a753647cab6e2ec21a5f0b95e52 /source4/librpc/idl | |
parent | 70071c21143c96039b6ebfe5b9b3f4463905ca49 (diff) | |
download | samba-462ef44745d56dbb00b3e31d12d2ecdc9d309219.tar.gz samba-462ef44745d56dbb00b3e31d12d2ecdc9d309219.tar.bz2 samba-462ef44745d56dbb00b3e31d12d2ecdc9d309219.zip |
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)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index a1d14c82b9..850acdcd05 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -557,9 +557,9 @@ NTSTATUS lsa_QuerySecret ( [in,ref] policy_handle *handle, [in,out] lsa_DATA_BUF_PTR *new_val, - [in,out] NTTIME *new_mtime, + [in,out] NTTIME_hyper *new_mtime, [in,out] lsa_DATA_BUF_PTR *old_val, - [in,out] NTTIME *old_mtime + [in,out] NTTIME_hyper *old_mtime ); /* Function: 0x1f */ |