Add const to copyright string. Put sccsid under #if 0/#endif control.

This commit is contained in:
Philippe Charnier 1997-11-20 07:26:04 +00:00
parent 55033a6f9f
commit 74b634ac40
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31308
2 changed files with 7 additions and 7 deletions

View File

@ -92,10 +92,10 @@ and
If a name is ambiguous, all possible derivations are returned.
.Pp
The following options may be passed to
.Nm fingerd
.Nm
as server program arguments in
.Pa /etc/inetd.conf :
.Bl -tag -width Ds
.Bl -tag -width indent
.It Fl s
Enable secure mode.
Queries without a user name are rejected and
@ -109,7 +109,7 @@ at LOG_NOTICE priority.
Use an alternate program as the local information provider.
The default local program
executed by
.Nm fingerd
.Nm
is
.Xr finger 1 .
By specifying a customized local server,

View File

@ -32,17 +32,17 @@
*/
#ifndef lint
static char copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1983, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
/*
#if 0
static char sccsid[] = "@(#)fingerd.c 8.1 (Berkeley) 6/4/93";
*/
#endif
static const char rcsid[] =
"$Id: fingerd.c,v 1.8 1997/03/28 15:48:09 imp Exp $";
"$Id$";
#endif /* not lint */
#include <sys/types.h>