diff options
author | 2001-03-28 20:04:38 +0000 | |
---|---|---|
committer | 2001-03-28 20:04:38 +0000 | |
commit | 228ef336e5ce9ca99bcf878fc3a2ed891f7d9ad4 (patch) | |
tree | 3af88f528ad93227ddb0b16a9056b0fe35814b7c /usr.bin/ssh/scp.c | |
parent | Allow tdbi's to appear in mbufs throughout the stack; this allows (diff) | |
download | wireguard-openbsd-228ef336e5ce9ca99bcf878fc3a2ed891f7d9ad4.tar.xz wireguard-openbsd-228ef336e5ce9ca99bcf878fc3a2ed891f7d9ad4.zip |
usage more like rcp and add missing -B to usage; ok markus@
Diffstat (limited to 'usr.bin/ssh/scp.c')
-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); } |