summaryrefslogtreecommitdiff
path: root/sys/conf
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2002-03-14 20:31:32 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2002-03-14 20:31:32 +0000
commit664594592b027192aadee83827fa39d430c954d0 (patch)
tree83df829c370f8eb63a310ab1cd55864e752ccd5c /sys/conf
parent5d9413e62b10c038c2061d9b5cc7f27ea22b1653 (diff)
remove ambiguity in version,ostype,osversion,osrelease and their constanity, they are and declarre 'em accordingly also removing private externies of those
Diffstat (limited to 'sys/conf')
-rw-r--r--sys/conf/newvers.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh
index 6cf195cac66..a2ebded46ce 100644
--- a/sys/conf/newvers.sh
+++ b/sys/conf/newvers.sh
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: newvers.sh,v 1.37 2001/12/04 00:05:10 niklas Exp $
+# $OpenBSD: newvers.sh,v 1.38 2002/03/14 20:31:31 mickey Exp $
# $NetBSD: newvers.sh,v 1.17.2.1 1995/10/12 05:17:11 jtc Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
@@ -66,11 +66,11 @@ ost="OpenBSD"
osr="3.0"
cat >vers.c <<eof
-char ostype[] = "${ost}";
-char osrelease[] = "${osr}";
-char osversion[] = "${id}#${v}";
-char sccs[8] = { ' ', ' ', ' ', ' ', '@', '(', '#', ')' };
-char version[] =
+const char ostype[] = "${ost}";
+const char osrelease[] = "${osr}";
+const char osversion[] = "${id}#${v}";
+const char sccs[8] = { ' ', ' ', ' ', ' ', '@', '(', '#', ')' };
+const char version[] =
"${ost} ${osr}-current (${id}) #${v}: ${t}\n ${u}@${h}:${d}\n";
eof