svn commit: samba r13428 - in trunk/source/lib: .

jra at samba.org jra at samba.org
Fri Feb 10 05:13:41 GMT 2006


Author: jra
Date: 2006-02-10 05:13:40 +0000 (Fri, 10 Feb 2006)
New Revision: 13428

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

Log:
Fix ctime -> st_ctime.
Jeremy.

Modified:
   trunk/source/lib/time.c


Changeset:
Modified: trunk/source/lib/time.c
===================================================================
--- trunk/source/lib/time.c	2006-02-10 05:13:37 UTC (rev 13427)
+++ trunk/source/lib/time.c	2006-02-10 05:13:40 UTC (rev 13428)
@@ -1012,7 +1012,7 @@
 	struct timespec ret;
 
 	/* Old system - no ns timestamp. */
-	ret.tv_sec = pst->ctime;
+	ret.tv_sec = pst->st_ctime;
 	ret.tv_nsec = 0;
 	return ret;
 #else



More information about the samba-cvs mailing list