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

metze at samba.org metze at samba.org
Tue Jan 11 06:47:16 GMT 2005


Author: metze
Date: 2005-01-11 06:47:15 +0000 (Tue, 11 Jan 2005)
New Revision: 4676

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

Log:
NTTIME_1sec is a standard NTTIME for the calling code
as it's already converted in the pull/push code

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-01-11 06:15:11 UTC (rev 4675)
+++ branches/SAMBA_4_0/source/librpc/ndr/ndr_basic.c	2005-01-11 06:47:15 UTC (rev 4676)
@@ -1102,7 +1102,10 @@
 
 void ndr_print_NTTIME_1sec(struct ndr_print *ndr, const char *name, NTTIME_1sec t)
 {
-	ndr_print_NTTIME(ndr, name, t * 10000000);
+	/* this is a standard NTTIME here
+	 * as it's already converted in the pull/push code
+	 */
+	ndr_print_NTTIME(ndr, name, t);
 }
 
 void ndr_print_NTTIME_hyper(struct ndr_print *ndr, const char *name, NTTIME_hyper t)



More information about the samba-cvs mailing list