diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-18 01:08:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:54 -0500 |
commit | e7b9aeb8833be0e7d0c16afdf014b19e787bd5ef (patch) | |
tree | c958c5e403b1238efa0377a094427c1b03669468 | |
parent | ee528dc0f2b3f412f03d30233f98667e9f4a29fc (diff) | |
download | samba-e7b9aeb8833be0e7d0c16afdf014b19e787bd5ef.tar.gz samba-e7b9aeb8833be0e7d0c16afdf014b19e787bd5ef.tar.bz2 samba-e7b9aeb8833be0e7d0c16afdf014b19e787bd5ef.zip |
r18599: the netr_CryptPassword structure needs to use a uint8, as the data is
passed to acrfour, and that assumes a byte buffer. This caused us to
fail big endian boxes (or more specifically, to be incompatible with
little endian boxes)
(This used to be commit a44f2eda1eeb134292111dd857f0f65e4bf96399)
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 533095eea6..e406d51329 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -1046,7 +1046,7 @@ interface netlogon ); typedef [flag(NDR_PAHEX)] struct { - uint16 data[256]; + uint8 data[512]; uint32 length; } netr_CryptPassword; |