summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-03-01 04:41:39 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-03-01 04:41:39 +0000
commite7006dc6cf7db9abd4f58d67aab34fdd51e83ef3 (patch)
tree04d34ace42df8ea681d480496feb227709749fb0 /sys
parentb382e02d07bda45c222a5ed31b68ebcd2c9224b6 (diff)
re-do how copyright messages are done
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/init_main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 50eb1176215..3306c61b49b 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init_main.c,v 1.36 1999/02/26 04:44:43 art Exp $ */
+/* $OpenBSD: init_main.c,v 1.37 1999/03/01 04:41:38 deraadt Exp $ */
/* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */
/*
@@ -105,9 +105,9 @@ extern void nfs_init __P((void));
#endif
char copyright[] =
-"Copyright (c) 1982, 1986, 1989, 1991, 1993\n\tThe Regents of the University of California. All rights reserved.\n";
-char copyright_openbsd[] =
-"Copyright (c) 1995-1999 OpenBSD. All rights reserved. http://www.OpenBSD.org\n\n";
+"Copyright (c) 1982, 1986, 1989, 1991, 1993\n"
+"\tThe Regents of the University of California. All rights reserved.\n"
+"Copyright (c) 1995-1999 OpenBSD. All rights reserved. http://www.OpenBSD.org\n";
/* Components of the first process -- never freed. */
struct session session0;
@@ -200,7 +200,7 @@ main(framep)
config_init(); /* init autoconfiguration data structures */
consinit();
printf(copyright);
- printf(copyright_openbsd);
+ printf("\n");
#if defined(UVM)
uvm_init();