From 7172eb74875039ae5a0a4a0c4fcfc54ad443ccf0 Mon Sep 17 00:00:00 2001 From: Distribution Folks Date: Thu, 6 Jun 1985 15:59:40 -0800 Subject: [PATCH] Add copyright SCCS-vsn: usr.bin/rdist/docmd.c 5.1 SCCS-vsn: usr.bin/rdist/expand.c 5.1 SCCS-vsn: usr.bin/rdist/lookup.c 5.1 SCCS-vsn: usr.bin/rdist/main.c 5.1 SCCS-vsn: usr.bin/rdist/server.c 5.1 SCCS-vsn: usr.bin/rdist/Makefile 5.1 SCCS-vsn: usr.bin/rdist/defs.h 5.1 SCCS-vsn: usr.bin/rdist/gram.y 5.1 SCCS-vsn: libexec/bugfiler/Makefile 5.1 SCCS-vsn: libexec/bugfiler/bugfiler.c 5.1 SCCS-vsn: libexec/bugfiler/sendbug.sh 5.1 --- usr/src/libexec/bugfiler/Makefile | 7 ++++++- usr/src/libexec/bugfiler/bugfiler.c | 16 ++++++++++++++-- usr/src/libexec/bugfiler/sendbug.sh | 10 +++++++--- usr/src/usr.bin/rdist/Makefile | 9 +++++++-- usr/src/usr.bin/rdist/defs.h | 8 +++++++- usr/src/usr.bin/rdist/docmd.c | 10 ++++++++-- usr/src/usr.bin/rdist/expand.c | 10 ++++++++-- usr/src/usr.bin/rdist/gram.y | 8 +++++++- usr/src/usr.bin/rdist/lookup.c | 10 ++++++++-- usr/src/usr.bin/rdist/main.c | 16 ++++++++++++++-- usr/src/usr.bin/rdist/server.c | 10 ++++++++-- 11 files changed, 94 insertions(+), 20 deletions(-) diff --git a/usr/src/libexec/bugfiler/Makefile b/usr/src/libexec/bugfiler/Makefile index 4f999bec84..0a5879196d 100644 --- a/usr/src/libexec/bugfiler/Makefile +++ b/usr/src/libexec/bugfiler/Makefile @@ -1,4 +1,9 @@ -# Makefile 4.3 83/11/15 +# +# 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% # # Bug report processor and associated programs # diff --git a/usr/src/libexec/bugfiler/bugfiler.c b/usr/src/libexec/bugfiler/bugfiler.c index e2426d086a..d597213707 100644 --- a/usr/src/libexec/bugfiler/bugfiler.c +++ b/usr/src/libexec/bugfiler/bugfiler.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[] = "@(#)bugfiler.c 4.15 (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[] = "@(#)bugfiler.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Bug report processing program. diff --git a/usr/src/libexec/bugfiler/sendbug.sh b/usr/src/libexec/bugfiler/sendbug.sh index e14c030d05..2c58047351 100644 --- a/usr/src/libexec/bugfiler/sendbug.sh +++ b/usr/src/libexec/bugfiler/sendbug.sh @@ -1,8 +1,12 @@ -#! /bin/csh -f +#!/bin/sh - # -# sendbug.sh 4.3 84/03/26 -# Create a bug report and mail to '4bsd-bugs'. +# Copyright (c) 1983 Regents of the University of California. +# All rights reserved. The Berkeley software License Agreement +# specifies the terms and conditions for redistribution. +# +# @(#)sendbug.sh 5.1 (Berkeley) %G% # +# Create a bug report and mail to '4bsd-bugs'. onintr clean /bin/cp /usr/ucb/bugformat /tmp/bug$$ diff --git a/usr/src/usr.bin/rdist/Makefile b/usr/src/usr.bin/rdist/Makefile index 95f1374d25..d47782d328 100644 --- a/usr/src/usr.bin/rdist/Makefile +++ b/usr/src/usr.bin/rdist/Makefile @@ -1,5 +1,10 @@ -# Makefile 4.9 85/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. +# +# @(#)Makefile 5.1 (Berkeley) %G% +# RDIST = /usr/ucb/rdist DESTDIR= SRCS = docmd.c expand.c gram.y lookup.c main.c server.c diff --git a/usr/src/usr.bin/rdist/defs.h b/usr/src/usr.bin/rdist/defs.h index f485c101e7..9bb75ea0fa 100644 --- a/usr/src/usr.bin/rdist/defs.h +++ b/usr/src/usr.bin/rdist/defs.h @@ -1,4 +1,10 @@ -/* defs.h 4.15 85/02/04 */ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)defs.h 5.1 (Berkeley) %G% + */ #include #include diff --git a/usr/src/usr.bin/rdist/docmd.c b/usr/src/usr.bin/rdist/docmd.c index 22a7938db6..478d07c324 100644 --- a/usr/src/usr.bin/rdist/docmd.c +++ b/usr/src/usr.bin/rdist/docmd.c @@ -1,6 +1,12 @@ +/* + * 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 = "@(#)docmd.c 4.26 (Berkeley) 85/03/05"; -#endif +static char sccsid[] = "@(#)docmd.c 5.1 (Berkeley) %G%"; +#endif not lint #include "defs.h" #include diff --git a/usr/src/usr.bin/rdist/expand.c b/usr/src/usr.bin/rdist/expand.c index 225d1f5d07..b3beb17fbd 100644 --- a/usr/src/usr.bin/rdist/expand.c +++ b/usr/src/usr.bin/rdist/expand.c @@ -1,6 +1,12 @@ +/* + * 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 = "@(#)expand.c 4.13 (Berkeley) 85/04/03"; -#endif +static char sccsid[] = "@(#)expand.c 5.1 (Berkeley) %G%"; +#endif not lint #include "defs.h" diff --git a/usr/src/usr.bin/rdist/gram.y b/usr/src/usr.bin/rdist/gram.y index a6e4914e58..5f402230be 100644 --- a/usr/src/usr.bin/rdist/gram.y +++ b/usr/src/usr.bin/rdist/gram.y @@ -1,6 +1,12 @@ %{ +# +# 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 = "@(#)gram.y 4.13 (Berkeley) 85/04/03"; +static char *sccsid = "@(#)gram.y 5.1 (Berkeley) 85/06/06"; #endif #include "defs.h" diff --git a/usr/src/usr.bin/rdist/lookup.c b/usr/src/usr.bin/rdist/lookup.c index ae4276756f..908cdafa8a 100644 --- a/usr/src/usr.bin/rdist/lookup.c +++ b/usr/src/usr.bin/rdist/lookup.c @@ -1,6 +1,12 @@ +/* + * 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 = "@(#)lookup.c 4.6 (Berkeley) 85/02/04"; -#endif +static char sccsid[] = "@(#)lookup.c 5.1 (Berkeley) %G%"; +#endif not lint #include "defs.h" diff --git a/usr/src/usr.bin/rdist/main.c b/usr/src/usr.bin/rdist/main.c index 78520e44ab..261f5d8bd2 100644 --- a/usr/src/usr.bin/rdist/main.c +++ b/usr/src/usr.bin/rdist/main.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 = "@(#)main.c 4.15 (Berkeley) 85/05/16"; -#endif +static char sccsid[] = "@(#)main.c 5.1 (Berkeley) %G%"; +#endif not lint #include "defs.h" diff --git a/usr/src/usr.bin/rdist/server.c b/usr/src/usr.bin/rdist/server.c index f35ca2b30d..608bbc7ccd 100644 --- a/usr/src/usr.bin/rdist/server.c +++ b/usr/src/usr.bin/rdist/server.c @@ -1,6 +1,12 @@ +/* + * 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 = "@(#)server.c 4.23 (Berkeley) 85/02/14"; -#endif +static char sccsid[] = "@(#)server.c 5.1 (Berkeley) %G%"; +#endif not lint #include "defs.h" -- 2.20.1