summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormouring <mouring@cvs.openbsd.org>2001-07-18 16:45:53 +0000
committermouring <mouring@cvs.openbsd.org>2001-07-18 16:45:53 +0000
commit450182152042eb25ffa67fab097a6ca2071c8e61 (patch)
tree1f3da6f60ca7452212e785d3a18a4dd00c0f7243
parent7205231fc4ffaaff24e2d391672afb1180a70cb1 (diff)
Missing -o in scp usage()
-rw-r--r--usr.bin/ssh/scp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index 9e85c268160..abc4775f15f 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.76 2001/06/23 15:12:19 itojun Exp $");
+RCSID("$OpenBSD: scp.c,v 1.77 2001/07/18 16:45:52 mouring Exp $");
#include "xmalloc.h"
#include "atomicio.h"
@@ -915,7 +915,8 @@ void
usage()
{
(void) fprintf(stderr, "usage: scp "
- "[-pqrvBC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2\n"
+ "[-pqrvBC46] [-S ssh] [-P port] [-c cipher] [-i identity] "
+ "[-o option] f1 f2\n"
" or: scp [options] f1 ... fn directory\n");
exit(1);
}