diff options
author | charnier <charnier@FreeBSD.org> | 1997-11-20 07:26:04 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-11-20 07:26:04 +0000 |
commit | 7a938e0797ad81f6dc8bb67d164c830d5a75b09d (patch) | |
tree | 46e776ec70f6340aec31a32f00ae07a09e8ac82a /libexec/fingerd | |
parent | 8eed1042a3158f3752b258b27d0a68d19331b4d2 (diff) | |
download | FreeBSD-src-7a938e0797ad81f6dc8bb67d164c830d5a75b09d.zip FreeBSD-src-7a938e0797ad81f6dc8bb67d164c830d5a75b09d.tar.gz |
Add const to copyright string. Put sccsid under #if 0/#endif control.
Diffstat (limited to 'libexec/fingerd')
-rw-r--r-- | libexec/fingerd/fingerd.8 | 6 | ||||
-rw-r--r-- | libexec/fingerd/fingerd.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/libexec/fingerd/fingerd.8 b/libexec/fingerd/fingerd.8 index f2a5810..6ad9aa3 100644 --- a/libexec/fingerd/fingerd.8 +++ b/libexec/fingerd/fingerd.8 @@ -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, diff --git a/libexec/fingerd/fingerd.c b/libexec/fingerd/fingerd.c index f97f3cc..0a38f53 100644 --- a/libexec/fingerd/fingerd.c +++ b/libexec/fingerd/fingerd.c @@ -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> |