diff options
author | 2002-06-17 06:05:56 +0000 | |
---|---|---|
committer | 2002-06-17 06:05:56 +0000 | |
commit | 9b5a7bbc27f0940af0eeb4fa9de533009e8f3293 (patch) | |
tree | c9b714a1a3999d140083de4671ee8d8afc2773ec | |
parent | Remove bogus make expression that only confused readers of the file. (diff) | |
download | wireguard-openbsd-9b5a7bbc27f0940af0eeb4fa9de533009e8f3293.tar.xz wireguard-openbsd-9b5a7bbc27f0940af0eeb4fa9de533009e8f3293.zip |
make usage like man page
-rw-r--r-- | usr.bin/ssh/scp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index d1a5604945c..124465dad7b 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.89 2002/06/08 12:36:53 markus Exp $"); +RCSID("$OpenBSD: scp.c,v 1.90 2002/06/17 06:05:56 deraadt Exp $"); #include "xmalloc.h" #include "atomicio.h" @@ -929,9 +929,9 @@ void usage(void) { (void) fprintf(stderr, - "usage: scp [-pqrvBC46] [-F config] [-S ssh] [-P port] [-c cipher] [-i identity]\n" - " [-o option] f1 f2\n" - " or: scp [options] f1 ... fn directory\n"); + "usage: scp [-pqrvBC46] [-F config] [-S program] [-P port]\n" + " [-c cipher] [-i identity] [-o option]\n" + " [[user@]host1:]file1 [...] [[user@]host2:]file2\n"); exit(1); } |