Module Name: src
Committed By: kre
Date: Mon Jan 20 22:24:33 UTC 2025
Modified Files:
src/usr.bin/xinstall: xinstall.c
Log Message:
Replace space in METALOG output dropped in previous change.
Should unbreak -U builds.
To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 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.129 src/usr.bin/xinstall/xinstall.c:1.130
--- src/usr.bin/xinstall/xinstall.c:1.129 Mon Jan 20 20:03:14 2025
+++ src/usr.bin/xinstall/xinstall.c Mon Jan 20 22:24:33 2025
@@ -1,4 +1,4 @@
-/* $NetBSD: xinstall.c,v 1.129 2025/01/20 20:03:14 christos Exp $ */
+/* $NetBSD: xinstall.c,v 1.130 2025/01/20 22:24:33 kre Exp $ */
/*
* Copyright (c) 1987, 1993
@@ -78,7 +78,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.129 2025/01/20 20:03:14 christos Exp $");
+__RCSID("$NetBSD: xinstall.c,v 1.130 2025/01/20 22:24:33 kre Exp $");
#endif
#endif /* not lint */
@@ -1215,6 +1215,7 @@ printid(char ug, const char *str)
if (!str)
return;
+ fputc(' ', metafp);
fputc(ug, metafp);
if (parseid(str, &id))
fprintf(metafp, "id=%jd", (intmax_t)id);