summaryrefslogtreecommitdiffstats
path: root/scp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-11-17 21:19:05 +1100
committerDamien Miller <djm@mindrot.org>2003-11-17 21:19:05 +1100
commitc1f2792bd056dcefef5de55c5cbfdb1f790fd339 (patch)
tree80a2b14594fa4f33a171d69028c922103431f805 /scp.c
parentf58b58ced10c2e9ae899f63d4e915ec9723cf5a1 (diff)
- dtucker@cvs.openbsd.org 2003/11/12 10:12:15
[scp.c] When called with -q, pass -q to ssh; suppresses SSH2 banner. ok markus@
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/scp.c b/scp.c
index 364ab286..36cf1b44 100644
--- a/scp.c
+++ b/scp.c
@@ -71,7 +71,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: scp.c,v 1.110 2003/10/08 08:27:36 jmc Exp $");
+RCSID("$OpenBSD: scp.c,v 1.111 2003/11/12 10:12:15 dtucker Exp $");
#include "xmalloc.h"
#include "atomicio.h"
@@ -273,6 +273,7 @@ main(int argc, char **argv)
verbose_mode = 1;
break;
case 'q':
+ addargs(&args, "-q");
showprogress = 0;
break;