diff options
author | charnier <charnier@FreeBSD.org> | 1997-06-06 06:43:19 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-06-06 06:43:19 +0000 |
commit | ae739990ebc3fe1f531bc508a744131e2a35ea78 (patch) | |
tree | dc22c712ae69338a9ce04d66a69a9d9b11f8e4cd /bin/rcp | |
parent | ae2a236f86574ac2f3111d2f53a2c1dc3428cf69 (diff) | |
download | FreeBSD-src-ae739990ebc3fe1f531bc508a744131e2a35ea78.zip FreeBSD-src-ae739990ebc3fe1f531bc508a744131e2a35ea78.tar.gz |
Correct usage string. Man page don't reflect reality for now.
Diffstat (limited to 'bin/rcp')
-rw-r--r-- | bin/rcp/rcp.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/bin/rcp/rcp.c b/bin/rcp/rcp.c index da63ae2..4864368 100644 --- a/bin/rcp/rcp.c +++ b/bin/rcp/rcp.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rcp.c,v 1.12 1997/03/28 15:24:32 imp Exp $ + * $Id: rcp.c,v 1.13 1997/05/09 16:00:35 joerg Exp $ */ #ifndef lint @@ -851,17 +851,18 @@ usage() { #ifdef KERBEROS #ifdef CRYPT - (void)fprintf(stderr, "%s\n\t%s\n", + (void)fprintf(stderr, "%s\n%s\n", "usage: rcp [-Kpx] [-k realm] f1 f2", - "or: rcp [-Kprx] [-k realm] f1 ... fn directory"); + " rcp [-Kprx] [-k realm] f1 ... fn directory"); #else - (void)fprintf(stderr, "%s\n\t%s\n", + (void)fprintf(stderr, "%s\n%s\n", "usage: rcp [-Kp] [-k realm] f1 f2", - "or: rcp [-Kpr] [-k realm] f1 ... fn directory"); + " rcp [-Kpr] [-k realm] f1 ... fn directory"); #endif #else - (void)fprintf(stderr, - "usage: rcp [-p] f1 f2; or: rcp [-pr] f1 ... fn directory\n"); + (void)fprintf(stderr, "%s\n%s\n", + "usage: rcp [-p] f1 f2", + " rcp [-pr] f1 ... fn directory"); #endif exit(1); } |