Happy new year!
This commit is contained in:
parent
3daa038bda
commit
974b59d07c
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: init_main.c,v 1.111 1998/01/06 21:18:00 thorpej Exp $ */
|
||||
/* $NetBSD: init_main.c,v 1.112 1998/01/07 00:41:43 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Christopher G. Demetriou. All rights reserved.
|
||||
@ -96,7 +96,8 @@
|
||||
#include <net/raw_cb.h>
|
||||
|
||||
char copyright[] = "\
|
||||
Copyright (c) 1996, 1997 The NetBSD Foundation, Inc. All rights reserved.
|
||||
Copyright (c) 1996, 1997, 1998
|
||||
The NetBSD Foundation, Inc. All rights reserved.
|
||||
Copyright (c) 1982, 1986, 1989, 1991, 1993
|
||||
The Regents of the University of California. All rights reserved.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: login.c,v 1.33 1997/12/05 08:29:39 hubertf Exp $ */
|
||||
/* $NetBSD: login.c,v 1.34 1998/01/07 00:48:59 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1980, 1987, 1988, 1991, 1993, 1994
|
||||
@ -44,7 +44,7 @@ __COPYRIGHT(
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)login.c 8.4 (Berkeley) 4/2/94";
|
||||
#endif
|
||||
__RCSID("$NetBSD: login.c,v 1.33 1997/12/05 08:29:39 hubertf Exp $");
|
||||
__RCSID("$NetBSD: login.c,v 1.34 1998/01/07 00:48:59 thorpej Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
@ -123,6 +123,12 @@ struct passwd *pwd;
|
||||
int failures;
|
||||
char term[64], *envinit[1], *hostname, *username, *tty;
|
||||
|
||||
static const char copyrightstr[] = "\
|
||||
Copyright (c) 1996, 1997, 1998
|
||||
\tThe NetBSD Foundation, Inc. All rights reserved.
|
||||
Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994
|
||||
\tThe Regents of the University of California. All rights reserved.\n\n";
|
||||
|
||||
int
|
||||
main(argc, argv)
|
||||
int argc;
|
||||
@ -497,12 +503,7 @@ main(argc, argv)
|
||||
#endif
|
||||
|
||||
if (!quietlog) {
|
||||
(void)printf("%s %s\n%s\n\t%s %s\n\n",
|
||||
"Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.",
|
||||
"All rights reserved.",
|
||||
"Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994",
|
||||
"The Regents of the University of California. ",
|
||||
"All rights reserved.");
|
||||
(void)printf(copyrightstr);
|
||||
motd();
|
||||
(void)snprintf(tbuf,
|
||||
sizeof(tbuf), "%s/%s", _PATH_MAILDIR, pwd->pw_name);
|
||||
|
Loading…
Reference in New Issue
Block a user