summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authordjm <djm>2003-11-17 10:19:05 +0000
committerdjm <djm>2003-11-17 10:19:05 +0000
commit8a04477c8df62bd66d454aae26c00cf60d7f8068 (patch)
tree7b41a1d129ad9f3c05f61b5a37fdf2778ba5adb9 /scp.c
parent2a177d1e6f3e805d712500ca9c7a3f186ad55110 (diff)
downloadopenssh-8a04477c8df62bd66d454aae26c00cf60d7f8068.tar.gz
- 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;