diff options
author | charnier <charnier@FreeBSD.org> | 1997-10-13 11:06:30 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-10-13 11:06:30 +0000 |
commit | 615b81821ddaa6ecd246ed74acd01de6eca45969 (patch) | |
tree | e7fdc43094fdf9d077531b264cf05230912cb0c8 /usr.sbin/rmt | |
parent | 9a7de1d4b18ff8ec6b551404b981df6e3bfcafa7 (diff) | |
download | FreeBSD-src-615b81821ddaa6ecd246ed74acd01de6eca45969.zip FreeBSD-src-615b81821ddaa6ecd246ed74acd01de6eca45969.tar.gz |
Hide sccsid[]. Typo in man page.
Diffstat (limited to 'usr.sbin/rmt')
-rw-r--r-- | usr.sbin/rmt/rmt.8 | 6 | ||||
-rw-r--r-- | usr.sbin/rmt/rmt.c | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/usr.sbin/rmt/rmt.8 b/usr.sbin/rmt/rmt.8 index dd3fead..8f9d0df 100644 --- a/usr.sbin/rmt/rmt.8 +++ b/usr.sbin/rmt/rmt.8 @@ -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. diff --git a/usr.sbin/rmt/rmt.c b/usr.sbin/rmt/rmt.c index 9a60527..88b7623 100644 --- a/usr.sbin/rmt/rmt.c +++ b/usr.sbin/rmt/rmt.c @@ -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 */ /* |