svn commit: samba r18599 - in branches/SAMBA_4_0/source/librpc/idl: .

tridge at samba.org tridge at samba.org
Mon Sep 18 01:08:19 GMT 2006


Author: tridge
Date: 2006-09-18 01:08:19 +0000 (Mon, 18 Sep 2006)
New Revision: 18599

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18599

Log:

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)

Modified:
   branches/SAMBA_4_0/source/librpc/idl/netlogon.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/netlogon.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/netlogon.idl	2006-09-17 20:28:46 UTC (rev 18598)
+++ branches/SAMBA_4_0/source/librpc/idl/netlogon.idl	2006-09-18 01:08:19 UTC (rev 18599)
@@ -1046,7 +1046,7 @@
 		);
 
 	typedef [flag(NDR_PAHEX)] struct {
-		uint16 data[256];
+		uint8 data[512];
 		uint32 length;
 	} netr_CryptPassword;
 



More information about the samba-cvs mailing list