Module Name:    src
Committed By:   apb
Date:           Sun Jul  6 20:54:47 UTC 2014

Modified Files:
        src/usr.bin/xinstall: xinstall.c

Log Message:
mtree spec files want nanoseconds, so multiply the microseconds by 1000.


To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 src/usr.bin/xinstall/xinstall.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/xinstall/xinstall.c
diff -u src/usr.bin/xinstall/xinstall.c:1.116 src/usr.bin/xinstall/xinstall.c:1.117
--- src/usr.bin/xinstall/xinstall.c:1.116	Sun Jul  6 20:50:03 2014
+++ src/usr.bin/xinstall/xinstall.c	Sun Jul  6 20:54:47 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: xinstall.c,v 1.116 2014/07/06 20:50:03 apb Exp $	*/
+/*	$NetBSD: xinstall.c,v 1.117 2014/07/06 20:54:47 apb Exp $	*/
 
 /*
  * Copyright (c) 1987, 1993
@@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 19
 #if 0
 static char sccsid[] = "@(#)xinstall.c	8.1 (Berkeley) 7/21/93";
 #else
-__RCSID("$NetBSD: xinstall.c,v 1.116 2014/07/06 20:50:03 apb Exp $");
+__RCSID("$NetBSD: xinstall.c,v 1.117 2014/07/06 20:54:47 apb Exp $");
 #endif
 #endif /* not lint */
 
@@ -1202,10 +1202,10 @@ metadata_log(const char *path, const cha
 	if (*type == 'f') /* type=file */
 		fprintf(metafp, " size=%lld", (long long)size);
 	if (tv != NULL && dopreserve)
-		fprintf(metafp, " time=%lld.%0*ld",
+		fprintf(metafp, " time=%lld.%0*lld",
 			(long long)tv[1].tv_sec,
 			(tv[1].tv_usec == 0 ? 1 : 9),
-			(long)tv[1].tv_usec);
+			(long long)tv[1].tv_usec * 1000);
 	if (digestresult && digest)
 		fprintf(metafp, " %s=%s", digest, digestresult);
 	if (fflags)

Reply via email to