mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Hide sccsid[]. Typo in man page.
This commit is contained in:
parent
713fe15b36
commit
12873ebf56
2 changed files with 8 additions and 4 deletions
|
|
@ -52,7 +52,7 @@ or
|
|||
call.
|
||||
.Pp
|
||||
The
|
||||
.Nm rmt
|
||||
.Nm
|
||||
program accepts requests specific to the manipulation of
|
||||
magnetic tapes, performs the commands, then responds with
|
||||
a status indication. All responses are in
|
||||
|
|
@ -152,7 +152,7 @@ If
|
|||
.Ar count
|
||||
exceeds the size of the data buffer (10 kilobytes), it is
|
||||
truncated to the data buffer size.
|
||||
.Nm rmt
|
||||
.Nm Rmt
|
||||
then performs the requested
|
||||
.Xr read 2
|
||||
and responds with
|
||||
|
|
@ -198,7 +198,7 @@ sent (in binary).
|
|||
.Sm on
|
||||
.Pp
|
||||
Any other command causes
|
||||
.Nm rmt
|
||||
.Nm
|
||||
to exit.
|
||||
.Sh DIAGNOSTICS
|
||||
All responses are of the form described above.
|
||||
|
|
|
|||
|
|
@ -32,13 +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[] = "@(#)rmt.c 8.1 (Berkeley) 6/6/93";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id$";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue