diff options
author | 1998-09-16 06:21:08 +0000 | |
---|---|---|
committer | 1998-09-16 06:21:08 +0000 | |
commit | 447e1f4f34223662ca51f7577eb7c1724f2d8aa6 (patch) | |
tree | d618b8735f2cc20f5b4f8e671aff70b067f95d7c /sys/kern/init_main.c | |
parent | Create some previously missing device nodes, ksyms, uk, and ss. (diff) | |
download | wireguard-openbsd-447e1f4f34223662ca51f7577eb7c1724f2d8aa6.tar.xz wireguard-openbsd-447e1f4f34223662ca51f7577eb7c1724f2d8aa6.zip |
add openbsd copyright; if you have not talked to me about this already, do so now
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r-- | sys/kern/init_main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 665be14f636..1632b88d222 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init_main.c,v 1.31 1998/03/01 00:37:54 niklas Exp $ */ +/* $OpenBSD: init_main.c,v 1.32 1998/09/16 06:21:08 deraadt Exp $ */ /* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */ /* @@ -100,7 +100,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\n"; +"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-1998 OpenBSD. All rights reserved. http://www.OpenBSD.org\n\n"; /* Components of the first process -- never freed. */ struct session session0; @@ -193,6 +195,7 @@ main(framep) config_init(); /* init autoconfiguration data structures */ consinit(); printf(copyright); + printf(copyright_openbsd); vm_mem_init(); kmeminit(); |