Module Name:    src
Committed By:   uebayasi
Date:           Mon Feb 14 16:27:58 UTC 2011

Modified Files:
        src/usr.sbin/mtree: spec.c

Log Message:
Suppress a superfluous whitespace after "time=..." in the output.


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 src/usr.sbin/mtree/spec.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.sbin/mtree/spec.c
diff -u src/usr.sbin/mtree/spec.c:1.78 src/usr.sbin/mtree/spec.c:1.79
--- src/usr.sbin/mtree/spec.c:1.78	Tue Sep 22 04:38:21 2009
+++ src/usr.sbin/mtree/spec.c	Mon Feb 14 16:27:58 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: spec.c,v 1.78 2009/09/22 04:38:21 apb Exp $	*/
+/*	$NetBSD: spec.c,v 1.79 2011/02/14 16:27:58 uebayasi Exp $	*/
 
 /*-
  * Copyright (c) 1989, 1993
@@ -67,7 +67,7 @@
 #if 0
 static char sccsid[] = "@(#)spec.c	8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: spec.c,v 1.78 2009/09/22 04:38:21 apb Exp $");
+__RCSID("$NetBSD: spec.c,v 1.79 2011/02/14 16:27:58 uebayasi Exp $");
 #endif
 #endif /* not lint */
 
@@ -358,7 +358,7 @@
 		if (MATCHFLAG(F_SIZE))
 			appendfield(pathlast, "size=%lld", (long long)cur->st_size);
 		if (MATCHFLAG(F_TIME))
-			appendfield(pathlast, "time=%lld.%ld ",
+			appendfield(pathlast, "time=%lld.%ld",
 			    (long long)cur->st_mtimespec.tv_sec,
 			    cur->st_mtimespec.tv_nsec);
 		if (MATCHFLAG(F_CKSUM))

Reply via email to