Module Name: src
Committed By: apb
Date: Sun Jul 6 20:50:03 UTC 2014
Modified Files:
src/usr.bin/xinstall: xinstall.c
Log Message:
When printing a timestamp to a metalog, use 9 digits
for the nanoseconds part, except use only 1 digit if
the value was zero.
To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 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.115 src/usr.bin/xinstall/xinstall.c:1.116
--- src/usr.bin/xinstall/xinstall.c:1.115 Tue Sep 6 18:50:32 2011
+++ src/usr.bin/xinstall/xinstall.c Sun Jul 6 20:50:03 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: xinstall.c,v 1.115 2011/09/06 18:50:32 joerg Exp $ */
+/* $NetBSD: xinstall.c,v 1.116 2014/07/06 20:50:03 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.115 2011/09/06 18:50:32 joerg Exp $");
+__RCSID("$NetBSD: xinstall.c,v 1.116 2014/07/06 20:50:03 apb Exp $");
#endif
#endif /* not lint */
@@ -1202,8 +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.%ld",
- (long long)tv[1].tv_sec, (long)tv[1].tv_usec);
+ fprintf(metafp, " time=%lld.%0*ld",
+ (long long)tv[1].tv_sec,
+ (tv[1].tv_usec == 0 ? 1 : 9),
+ (long)tv[1].tv_usec);
if (digestresult && digest)
fprintf(metafp, " %s=%s", digest, digestresult);
if (fflags)