diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-03-28 20:04:39 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-03-28 20:04:39 +0000 |
commit | 3a7d9c49c5ca8fa1ad789691ecab676f539a612a (patch) | |
tree | bcfa90bf2d9a6261b5102a8baefeecf10b446a0c | |
parent | 3ddeb82e5920fb4ce16a363a4cdf2ff420fc6f8c (diff) |
usage more like rcp and add missing -B to usage; ok markus@
-rw-r--r-- | usr.bin/ssh/scp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index 20ec8b28adb..b42b9be62cb 100644 --- a/usr.bin/ssh/scp.c +++ b/usr.bin/ssh/scp.c @@ -75,7 +75,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: scp.c,v 1.63 2001/03/28 19:56:23 stevesk Exp $"); +RCSID("$OpenBSD: scp.c,v 1.64 2001/03/28 20:04:38 stevesk Exp $"); #include "xmalloc.h" #include "atomicio.h" @@ -933,8 +933,8 @@ void usage() { (void) fprintf(stderr, "usage: scp " - "[-pqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2; or:\n" - " scp [options] f1 ... fn directory\n"); + "[-pqrvBC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2\n" + " or: scp [options] f1 ... fn directory\n"); exit(1); } |