From 8c5eec2f1483710dd0abd91a5708e55e267e49f9 Mon Sep 17 00:00:00 2001 From: Distribution Folks Date: Tue, 28 May 1985 22:49:24 -0800 Subject: [PATCH 1/1] Add copyright SCCS-vsn: sbin/restore/dirs.c 5.1 SCCS-vsn: sbin/restore/interactive.c 5.1 SCCS-vsn: sbin/restore/main.c 5.1 SCCS-vsn: sbin/restore/restore.c 5.1 SCCS-vsn: sbin/restore/symtab.c 5.1 SCCS-vsn: sbin/restore/tape.c 5.1 SCCS-vsn: sbin/restore/utilities.c 5.1 SCCS-vsn: sbin/restore/Makefile 5.1 SCCS-vsn: sbin/restore/restore.h 5.1 SCCS-vsn: libexec/rlogind/rlogind.c 5.1 SCCS-vsn: usr.sbin/rmt/rmt.c 5.1 SCCS-vsn: libexec/rshd/rshd.c 5.1 SCCS-vsn: old/rxformat/rxformat.c 5.1 SCCS-vsn: include/protocols/rwhod.h 5.1 SCCS-vsn: sbin/shutdown/shutdown.c 5.1 SCCS-vsn: sbin/swapon/swapon.c 5.1 SCCS-vsn: usr.sbin/syslogd/syslogd.c 5.1 SCCS-vsn: libexec/telnetd/telnetd.c 5.1 SCCS-vsn: libexec/tftpd/tftpd.c 5.1 SCCS-vsn: sbin/tunefs/tunefs.c 5.1 SCCS-vsn: sbin/umount/umount.c 5.1 SCCS-vsn: usr.sbin/vipw/vipw.c 5.1 SCCS-vsn: share/termcap/Makefile 5.1 SCCS-vsn: share/termcap/reorder 5.1 SCCS-vsn: share/termcap/termcap.src 5.1 --- usr/src/include/protocols/rwhod.h | 8 +++++++- usr/src/libexec/rlogind/rlogind.c | 16 ++++++++++++++-- usr/src/libexec/rshd/rshd.c | 16 ++++++++++++++-- usr/src/libexec/telnetd/telnetd.c | 16 ++++++++++++++-- usr/src/libexec/tftpd/tftpd.c | 16 ++++++++++++++-- usr/src/old/rxformat/rxformat.c | 16 ++++++++++++++-- usr/src/sbin/restore/Makefile | 7 +++++-- usr/src/sbin/restore/dirs.c | 12 ++++++++---- usr/src/sbin/restore/interactive.c | 8 ++++++-- usr/src/sbin/restore/main.c | 16 +++++++++++++--- usr/src/sbin/restore/restore.c | 12 ++++++++---- usr/src/sbin/restore/restore.h | 8 +++++++- usr/src/sbin/restore/symtab.c | 12 ++++++++---- usr/src/sbin/restore/tape.c | 12 ++++++++---- usr/src/sbin/restore/utilities.c | 12 ++++++++---- usr/src/sbin/shutdown/shutdown.c | 16 ++++++++++++++-- usr/src/sbin/swapon/swapon.c | 17 ++++++++++++++++- usr/src/sbin/tunefs/tunefs.c | 16 ++++++++++++++-- usr/src/sbin/umount/umount.c | 16 ++++++++++++++-- usr/src/share/termcap/Makefile | 7 ++++++- usr/src/share/termcap/reorder | 11 +++++++++++ usr/src/share/termcap/termcap.src | 12 +++++++++++- usr/src/usr.sbin/rmt/rmt.c | 16 ++++++++++++++-- usr/src/usr.sbin/syslogd/syslogd.c | 16 ++++++++++++++-- usr/src/usr.sbin/vipw/vipw.c | 16 ++++++++++++++-- 25 files changed, 276 insertions(+), 54 deletions(-) diff --git a/usr/src/include/protocols/rwhod.h b/usr/src/include/protocols/rwhod.h index d7018894ee..9b47500adc 100644 --- a/usr/src/include/protocols/rwhod.h +++ b/usr/src/include/protocols/rwhod.h @@ -1,4 +1,10 @@ -/* rwhod.h 4.8 83/06/01 */ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)rwhod.h 5.1 (Berkeley) %G% + */ /* * rwho protocol packet format. diff --git a/usr/src/libexec/rlogind/rlogind.c b/usr/src/libexec/rlogind/rlogind.c index 356af4d051..922f72f24e 100644 --- a/usr/src/libexec/rlogind/rlogind.c +++ b/usr/src/libexec/rlogind/rlogind.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char sccsid[] = "@(#)rlogind.c 4.25 (Berkeley) %G%"; -#endif +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)rlogind.c 5.1 (Berkeley) %G%"; +#endif not lint /* * remote login server: diff --git a/usr/src/libexec/rshd/rshd.c b/usr/src/libexec/rshd/rshd.c index 2410d74075..369eac6519 100644 --- a/usr/src/libexec/rshd/rshd.c +++ b/usr/src/libexec/rshd/rshd.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char sccsid[] = "@(#)rshd.c 4.21 (Berkeley) %G%"; -#endif +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)rshd.c 5.1 (Berkeley) %G%"; +#endif not lint /* * remote shell server: diff --git a/usr/src/libexec/telnetd/telnetd.c b/usr/src/libexec/telnetd/telnetd.c index 73114362eb..e8928a7819 100644 --- a/usr/src/libexec/telnetd/telnetd.c +++ b/usr/src/libexec/telnetd/telnetd.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)telnetd.c 4.32 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)telnetd.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Stripped-down telnet server. diff --git a/usr/src/libexec/tftpd/tftpd.c b/usr/src/libexec/tftpd/tftpd.c index 185ba092ce..da3d85ec02 100644 --- a/usr/src/libexec/tftpd/tftpd.c +++ b/usr/src/libexec/tftpd/tftpd.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char sccsid[] = "@(#)tftpd.c 4.14 (Berkeley) %G%"; -#endif +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)tftpd.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Trivial file transfer protocol server. diff --git a/usr/src/old/rxformat/rxformat.c b/usr/src/old/rxformat/rxformat.c index 438714c2ad..5ac9970906 100644 --- a/usr/src/old/rxformat/rxformat.c +++ b/usr/src/old/rxformat/rxformat.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)rxformat.c 4.5 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)rxformat.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include diff --git a/usr/src/sbin/restore/Makefile b/usr/src/sbin/restore/Makefile index cff53fb534..420f06cf92 100644 --- a/usr/src/sbin/restore/Makefile +++ b/usr/src/sbin/restore/Makefile @@ -1,6 +1,9 @@ -# Copyright (c) 1982 Regents of the University of California # -# @(#)Makefile 4.11 (Berkeley) %G% +# Copyright (c) 1983 Regents of the University of California. +# All rights reserved. The Berkeley software License Agreement +# specifies the terms and conditions for redistribution. +# +# @(#)Makefile 5.1 (Berkeley) %G% # DESTDIR= CFLAGS= -O diff --git a/usr/src/sbin/restore/dirs.c b/usr/src/sbin/restore/dirs.c index 97db9c8982..5e3ea03cd1 100644 --- a/usr/src/sbin/restore/dirs.c +++ b/usr/src/sbin/restore/dirs.c @@ -1,8 +1,12 @@ -#ifndef lint -static char sccsid[] = "@(#)dirs.c 3.20 (Berkeley) 85/02/18"; -#endif +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ -/* Copyright (c) 1983 Regents of the University of California */ +#ifndef lint +static char sccsid[] = "@(#)dirs.c 5.1 (Berkeley) %G%"; +#endif not lint #include "restore.h" #include diff --git a/usr/src/sbin/restore/interactive.c b/usr/src/sbin/restore/interactive.c index 5aed395f26..e755ccd35f 100644 --- a/usr/src/sbin/restore/interactive.c +++ b/usr/src/sbin/restore/interactive.c @@ -1,7 +1,11 @@ -/* Copyright (c) 1985 Regents of the University of California */ +/* + * Copyright (c) 1985 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ #ifndef lint -static char sccsid[] = "@(#)interactive.c 3.5 (Berkeley) %G%"; +static char sccsid[] = "@(#)interactive.c 5.1 (Berkeley) %G%"; #endif not lint #include "restore.h" diff --git a/usr/src/sbin/restore/main.c b/usr/src/sbin/restore/main.c index 49ed06d07a..c5755a93d6 100644 --- a/usr/src/sbin/restore/main.c +++ b/usr/src/sbin/restore/main.c @@ -1,8 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char sccsid[] = "@(#)main.c 3.16 (Berkeley) 85/03/24"; -#endif +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint -/* Copyright (c) 1983 Regents of the University of California */ +#ifndef lint +static char sccsid[] = "@(#)main.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Modified to recursively extract all files within a subtree diff --git a/usr/src/sbin/restore/restore.c b/usr/src/sbin/restore/restore.c index 0de1db2019..7979d5f209 100644 --- a/usr/src/sbin/restore/restore.c +++ b/usr/src/sbin/restore/restore.c @@ -1,8 +1,12 @@ -#ifndef lint -static char sccsid[] = "@(#)restore.c 3.20 (Berkeley) 85/02/18"; -#endif +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ -/* Copyright (c) 1983 Regents of the University of California */ +#ifndef lint +static char sccsid[] = "@(#)restore.c 5.1 (Berkeley) %G%"; +#endif not lint #include "restore.h" diff --git a/usr/src/sbin/restore/restore.h b/usr/src/sbin/restore/restore.h index 947d77e576..2a2215c04d 100644 --- a/usr/src/sbin/restore/restore.h +++ b/usr/src/sbin/restore/restore.h @@ -1,4 +1,10 @@ -/* restore.h 3.12 85/03/24 */ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)restore.h 5.1 (Berkeley) %G% + */ #include #include diff --git a/usr/src/sbin/restore/symtab.c b/usr/src/sbin/restore/symtab.c index 07fd2ea1d3..849ffb8d0d 100644 --- a/usr/src/sbin/restore/symtab.c +++ b/usr/src/sbin/restore/symtab.c @@ -1,8 +1,12 @@ -#ifndef lint -static char sccsid[] = "@(#)symtab.c 3.17 (Berkeley) 85/03/24"; -#endif +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ -/* Copyright (c) 1983 Regents of the University of California */ +#ifndef lint +static char sccsid[] = "@(#)symtab.c 5.1 (Berkeley) %G%"; +#endif not lint /* * These routines maintain the symbol table which tracks the state diff --git a/usr/src/sbin/restore/tape.c b/usr/src/sbin/restore/tape.c index 2895710abe..65ae4f5232 100644 --- a/usr/src/sbin/restore/tape.c +++ b/usr/src/sbin/restore/tape.c @@ -1,8 +1,12 @@ -#ifndef lint -static char sccsid[] = "@(#)tape.c 3.28 (Berkeley) 85/04/23"; -#endif +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ -/* Copyright (c) 1983 Regents of the University of California */ +#ifndef lint +static char sccsid[] = "@(#)tape.c 5.1 (Berkeley) %G%"; +#endif not lint #include "restore.h" #include diff --git a/usr/src/sbin/restore/utilities.c b/usr/src/sbin/restore/utilities.c index 794ba79eb0..17cdf54f0b 100644 --- a/usr/src/sbin/restore/utilities.c +++ b/usr/src/sbin/restore/utilities.c @@ -1,8 +1,12 @@ -#ifndef lint -static char sccsid[] = "@(#)utilities.c 3.20 (Berkeley) 85/02/18"; -#endif +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ -/* Copyright (c) 1983 Regents of the University of California */ +#ifndef lint +static char sccsid[] = "@(#)utilities.c 5.1 (Berkeley) %G%"; +#endif not lint #include "restore.h" diff --git a/usr/src/sbin/shutdown/shutdown.c b/usr/src/sbin/shutdown/shutdown.c index 28973ab51a..8eecad7e7d 100644 --- a/usr/src/sbin/shutdown/shutdown.c +++ b/usr/src/sbin/shutdown/shutdown.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char *sccsid = "@(#)shutdown.c 4.20 (Berkeley) 84/02/02"; -#endif +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)shutdown.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include diff --git a/usr/src/sbin/swapon/swapon.c b/usr/src/sbin/swapon/swapon.c index fecef56695..92a17ec612 100644 --- a/usr/src/sbin/swapon/swapon.c +++ b/usr/src/sbin/swapon/swapon.c @@ -1,4 +1,19 @@ -static char *sccsid = "@(#)swapon.c 4.8 (Berkeley) %G%"; +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)swapon.c 5.1 (Berkeley) %G%"; +#endif not lint + #include #include #include diff --git a/usr/src/sbin/tunefs/tunefs.c b/usr/src/sbin/tunefs/tunefs.c index 1c831bbf2c..6b3428e2c5 100644 --- a/usr/src/sbin/tunefs/tunefs.c +++ b/usr/src/sbin/tunefs/tunefs.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char *sccsid = "@(#)tunefs.c 4.4 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)tunefs.c 5.1 (Berkeley) %G%"; +#endif not lint /* * tunefs: change layout parameters to an existing file system. diff --git a/usr/src/sbin/umount/umount.c b/usr/src/sbin/umount/umount.c index 197a8d545d..6f8add96b0 100644 --- a/usr/src/sbin/umount/umount.c +++ b/usr/src/sbin/umount/umount.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char *sccsid = "@(#)umount.c 4.8 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)umount.c 5.1 (Berkeley) %G%"; +#endif not lint /* * umount diff --git a/usr/src/share/termcap/Makefile b/usr/src/share/termcap/Makefile index 07abe98cc0..09156883dd 100644 --- a/usr/src/share/termcap/Makefile +++ b/usr/src/share/termcap/Makefile @@ -1,4 +1,9 @@ -# @(#)Makefile 1.11 (Berkeley) %G% +# +# Copyright (c) 1980 Regents of the University of California. +# All rights reserved. The Berkeley software License Agreement +# specifies the terms and conditions for redistribution. +# +# @(#)Makefile 5.1 (Berkeley) %G% # # reorder gives an editor command for most common terminals # (in reverse order from n'th to 1'st most commonly used) diff --git a/usr/src/share/termcap/reorder b/usr/src/share/termcap/reorder index c994897280..8b7b212e6a 100644 --- a/usr/src/share/termcap/reorder +++ b/usr/src/share/termcap/reorder @@ -1,3 +1,14 @@ + +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)reorder 5.1 (Berkeley) %G%"; +#endif not lint + /|c100|/;.,/^[^ ]/-m9 /|c100-rv|/;.,/^[^ ]/-m9 /|c100-rv-pp|/;.,/^[^ ]/-m9 diff --git a/usr/src/share/termcap/termcap.src b/usr/src/share/termcap/termcap.src index 40ab6e64ad..79f132b446 100644 --- a/usr/src/share/termcap/termcap.src +++ b/usr/src/share/termcap/termcap.src @@ -1,6 +1,16 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +static char sccsid[] = "@(#)termcap.src 5.1 (Berkeley) %G%"; +#endif not lint + # ------------------------ # -# Termcap source file @(#)termcap.src 1.47 (Berkeley) %G% +# Termcap source file # Kevin Layer, Berkeley # Craig Leres, Berkeley # Mark Horton, Berkeley diff --git a/usr/src/usr.sbin/rmt/rmt.c b/usr/src/usr.sbin/rmt/rmt.c index 5fe3337dc7..250409bc15 100644 --- a/usr/src/usr.sbin/rmt/rmt.c +++ b/usr/src/usr.sbin/rmt/rmt.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)rmt.c 4.8 (Berkeley) 85/03/24"; -#endif +static char sccsid[] = "@(#)rmt.c 5.1 (Berkeley) %G%"; +#endif not lint /* * rmt diff --git a/usr/src/usr.sbin/syslogd/syslogd.c b/usr/src/usr.sbin/syslogd/syslogd.c index a861502a06..29a4df22fe 100644 --- a/usr/src/usr.sbin/syslogd/syslogd.c +++ b/usr/src/usr.sbin/syslogd/syslogd.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)syslogd.c 4.12 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)syslogd.c 5.1 (Berkeley) %G%"; +#endif not lint /* * syslogd -- log system messages diff --git a/usr/src/usr.sbin/vipw/vipw.c b/usr/src/usr.sbin/vipw/vipw.c index 030adbd14b..0d082b525b 100644 --- a/usr/src/usr.sbin/vipw/vipw.c +++ b/usr/src/usr.sbin/vipw/vipw.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)vipw.c 4.7 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)vipw.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include -- 2.20.1