summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authorjmc@openbsd.org <jmc@openbsd.org>2019-01-27 07:14:11 +0000
committerDarren Tucker <dtucker@dtucker.net>2019-02-01 18:55:11 +1100
commit2c21b75a7be6ebdcbceaebb43157c48dbb36f3d8 (patch)
treef11d757b4b5184e890a031eaa8b75ff8378edbbd /scp.c
parent19a0f0529d3df04118da829528cac7ceff380b24 (diff)
upstream: add -T to usage();
OpenBSD-Commit-ID: a7ae14d9436c64e1bd05022329187ea3a0ce1899
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scp.c b/scp.c
index e669e815e..96fc246cd 100644
--- a/scp.c
+++ b/scp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: scp.c,v 1.202 2019/01/26 22:41:28 djm Exp $ */ 1/* $OpenBSD: scp.c,v 1.203 2019/01/27 07:14:11 jmc Exp $ */
2/* 2/*
3 * scp - secure remote copy. This is basically patched BSD rcp which 3 * scp - secure remote copy. This is basically patched BSD rcp which
4 * uses ssh to do the data transfer (instead of using rcmd). 4 * uses ssh to do the data transfer (instead of using rcmd).
@@ -1341,7 +1341,7 @@ void
1341usage(void) 1341usage(void)
1342{ 1342{
1343 (void) fprintf(stderr, 1343 (void) fprintf(stderr,
1344 "usage: scp [-346BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]\n" 1344 "usage: scp [-346BCpqrTv] [-c cipher] [-F ssh_config] [-i identity_file]\n"
1345 " [-J destination] [-l limit] [-o ssh_option] [-P port]\n" 1345 " [-J destination] [-l limit] [-o ssh_option] [-P port]\n"
1346 " [-S program] source ... target\n"); 1346 " [-S program] source ... target\n");
1347 exit(1); 1347 exit(1);