From 808a36ef658c1810327b5d329469bcf5dad24b28 Mon Sep 17 00:00:00 2001 From: jkh Date: Tue, 14 Jan 1997 07:20:47 +0000 Subject: Make the long-awaited change from $Id$ to $FreeBSD$ This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. --- usr.sbin/ypserv/Makefile | 2 +- usr.sbin/ypserv/Makefile.yp | 2 +- usr.sbin/ypserv/yp_access.c | 2 +- usr.sbin/ypserv/yp_dblookup.c | 4 ++-- usr.sbin/ypserv/yp_dnslookup.c | 4 ++-- usr.sbin/ypserv/yp_error.c | 4 ++-- usr.sbin/ypserv/yp_extern.h | 2 +- usr.sbin/ypserv/yp_main.c | 4 ++-- usr.sbin/ypserv/yp_server.c | 2 +- usr.sbin/ypserv/yp_svc_udp.c | 4 ++-- usr.sbin/ypserv/ypserv.8 | 2 +- 11 files changed, 16 insertions(+), 16 deletions(-) (limited to 'usr.sbin/ypserv') diff --git a/usr.sbin/ypserv/Makefile b/usr.sbin/ypserv/Makefile index 8889e1a..06e4fa8 100644 --- a/usr.sbin/ypserv/Makefile +++ b/usr.sbin/ypserv/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1996/12/03 02:37:35 wpaul Exp $ +# $FreeBSD$ PROG= ypserv SRCS= yp_svc.c yp_server.c yp_dblookup.c yp_dnslookup.c \ diff --git a/usr.sbin/ypserv/Makefile.yp b/usr.sbin/ypserv/Makefile.yp index f15dfb4..b75d23d 100644 --- a/usr.sbin/ypserv/Makefile.yp +++ b/usr.sbin/ypserv/Makefile.yp @@ -1,7 +1,7 @@ # # Makefile for the NIS databases # -# $Id: Makefile.yp,v 1.13 1996/10/24 18:58:21 wpaul Exp $ +# $FreeBSD$ # # This Makefile should only be run on the NIS master server of a domain. # All updated maps will be pushed to all NIS slave servers listed in the diff --git a/usr.sbin/ypserv/yp_access.c b/usr.sbin/ypserv/yp_access.c index 0b028ef..ccd194c 100644 --- a/usr.sbin/ypserv/yp_access.c +++ b/usr.sbin/ypserv/yp_access.c @@ -53,7 +53,7 @@ #endif #ifndef lint -static const char rcsid[] = "$Id: yp_access.c,v 1.11 1996/10/24 18:58:22 wpaul Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif extern int debug; diff --git a/usr.sbin/ypserv/yp_dblookup.c b/usr.sbin/ypserv/yp_dblookup.c index 2edb673..6484a16 100644 --- a/usr.sbin/ypserv/yp_dblookup.c +++ b/usr.sbin/ypserv/yp_dblookup.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: yp_dblookup.c,v 1.2 1996/12/22 15:54:15 wpaul Exp $ + * $FreeBSD$ * */ #include @@ -47,7 +47,7 @@ #include "yp_extern.h" #ifndef lint -static const char rcsid[] = "$Id: yp_dblookup.c,v 1.2 1996/12/22 15:54:15 wpaul Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif int ypdb_debug = 0; diff --git a/usr.sbin/ypserv/yp_dnslookup.c b/usr.sbin/ypserv/yp_dnslookup.c index c4d0276..67a46ed 100644 --- a/usr.sbin/ypserv/yp_dnslookup.c +++ b/usr.sbin/ypserv/yp_dnslookup.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: yp_dnslookup.c,v 1.15 1997/01/12 08:09:28 wpaul Exp $ + * $FreeBSD$ */ /* @@ -65,7 +65,7 @@ #include "yp_extern.h" #ifndef lint -static const char rcsid[] = "$Id: yp_dnslookup.c,v 1.15 1997/01/12 08:09:28 wpaul Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif static char *parse(hp) diff --git a/usr.sbin/ypserv/yp_error.c b/usr.sbin/ypserv/yp_error.c index 0dac2f5..12074d6 100644 --- a/usr.sbin/ypserv/yp_error.c +++ b/usr.sbin/ypserv/yp_error.c @@ -34,7 +34,7 @@ * error logging/reporting facilities * stolen from /usr/libexec/mail.local via ypserv * - * $Id: yp_error.c,v 1.3 1996/05/01 02:36:34 wpaul Exp $ + * $FreeBSD$ */ #include @@ -42,7 +42,7 @@ #include #ifndef lint -static const char rcsid[] = "$Id: yp_error.c,v 1.3 1996/05/01 02:36:34 wpaul Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif int debug; diff --git a/usr.sbin/ypserv/yp_extern.h b/usr.sbin/ypserv/yp_extern.h index 0fb7ab2..8411c81 100644 --- a/usr.sbin/ypserv/yp_extern.h +++ b/usr.sbin/ypserv/yp_extern.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: yp_extern.h,v 1.4 1996/12/24 07:52:52 wpaul Exp $ + * $FreeBSD$ */ #include #include diff --git a/usr.sbin/ypserv/yp_main.c b/usr.sbin/ypserv/yp_main.c index ae7ce9a..6de5877 100644 --- a/usr.sbin/ypserv/yp_main.c +++ b/usr.sbin/ypserv/yp_main.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: yp_main.c,v 1.11 1996/12/30 15:32:43 peter Exp $ + * $FreeBSD$ */ /* @@ -66,7 +66,7 @@ #define _RPCSVC_CLOSEDOWN 120 #ifndef lint -static const char rcsid[] = "$Id: yp_main.c,v 1.11 1996/12/30 15:32:43 peter Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ int _rpcpmstart; /* Started by a port monitor ? */ static int _rpcfdtype; diff --git a/usr.sbin/ypserv/yp_server.c b/usr.sbin/ypserv/yp_server.c index 8d9c19c..e505b94 100644 --- a/usr.sbin/ypserv/yp_server.c +++ b/usr.sbin/ypserv/yp_server.c @@ -45,7 +45,7 @@ #include #ifndef lint -static const char rcsid[] = "$Id: yp_server.c,v 1.4 1997/01/07 04:10:51 wpaul Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ int forked = 0; diff --git a/usr.sbin/ypserv/yp_svc_udp.c b/usr.sbin/ypserv/yp_svc_udp.c index 0652a2e..189326b 100644 --- a/usr.sbin/ypserv/yp_svc_udp.c +++ b/usr.sbin/ypserv/yp_svc_udp.c @@ -29,14 +29,14 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: yp_svc_udp.c,v 1.1 1996/12/22 15:44:09 wpaul Exp $ + * $FreeBSD$ */ #include #include "yp_extern.h" #ifndef lint -static const char rcsid[] = "$Id: yp_svc_udp.c,v 1.1 1996/12/22 15:44:09 wpaul Exp $"; +static const char rcsid[] = "$FreeBSD$"; #endif /* diff --git a/usr.sbin/ypserv/ypserv.8 b/usr.sbin/ypserv/ypserv.8 index 770692a..19781d9 100644 --- a/usr.sbin/ypserv/ypserv.8 +++ b/usr.sbin/ypserv/ypserv.8 @@ -28,7 +28,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: ypserv.8,v 1.7 1996/04/07 00:06:21 mpp Exp $ +.\" $FreeBSD$ .\" .Dd February 4, 1995 .Dt YPSERV 8 -- cgit v1.1