svn commit: samba r10339 - in branches/SAMBA_4_0/source/librpc/ndr: .

metze at samba.org metze at samba.org
Tue Sep 20 07:56:55 GMT 2005


Author: metze
Date: 2005-09-20 07:56:54 +0000 (Tue, 20 Sep 2005)
New Revision: 10339

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

Log:
fix ndr_push_udlongr

metze
Modified:
   branches/SAMBA_4_0/source/librpc/ndr/ndr_basic.c


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/ndr/ndr_basic.c
===================================================================
--- branches/SAMBA_4_0/source/librpc/ndr/ndr_basic.c	2005-09-20 07:20:49 UTC (rev 10338)
+++ branches/SAMBA_4_0/source/librpc/ndr/ndr_basic.c	2005-09-20 07:56:54 UTC (rev 10339)
@@ -352,8 +352,8 @@
 {
 	NDR_PUSH_ALIGN(ndr, 4);
 	NDR_PUSH_NEED_BYTES(ndr, 8);
-	NDR_SIVAL(ndr, ndr->offset+4, (v>>32));
-	NDR_SIVAL(ndr, ndr->offset, (v & 0xFFFFFFFF));
+	NDR_SIVAL(ndr, ndr->offset, (v>>32));
+	NDR_SIVAL(ndr, ndr->offset+4, (v & 0xFFFFFFFF));
 	ndr->offset += 8;
 	return NT_STATUS_OK;
 }



More information about the samba-cvs mailing list