Module Name: src
Committed By: jschauma
Date: Mon Nov 28 17:41:00 UTC 2022
Modified Files:
src/tests/lib/libc/net: t_protoent.sh
Log Message:
whoops, we don't want an extra space here
(erroneously introduced in my previous commit)
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/net/t_protoent.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/net/t_protoent.sh
diff -u src/tests/lib/libc/net/t_protoent.sh:1.3 src/tests/lib/libc/net/t_protoent.sh:1.4
--- src/tests/lib/libc/net/t_protoent.sh:1.3 Mon Nov 28 17:09:52 2022
+++ src/tests/lib/libc/net/t_protoent.sh Mon Nov 28 17:41:00 2022
@@ -1,4 +1,4 @@
-# $NetBSD: t_protoent.sh,v 1.3 2022/11/28 17:09:52 jschauma Exp $
+# $NetBSD: t_protoent.sh,v 1.4 2022/11/28 17:41:00 jschauma Exp $
#
# Copyright (c) 2008 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -70,7 +70,7 @@ protoent_body()
if (i>2) {
printf " ";
}
- printf "%s ", ar[i];
+ printf "%s", ar[i];
}
printf "\n";
delete ar;