diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-03 19:38:43 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-03 19:38:43 +0000 |
commit | afb3702dbafefebe51a66bf10cf1a45aee89d87c (patch) | |
tree | 7903dbe342bf9a7774306ca4bf1370c44207c822 /usr.bin | |
parent | d81f8648eb8fb991cb2b5315125fc3742706c6a0 (diff) |
pass -v to ssh; from slade@shore.net
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/scp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index a62646b56b5..c49fd3e19a4 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.71 2001/05/19 16:05:41 markus Exp $"); +RCSID("$OpenBSD: scp.c,v 1.72 2001/06/03 19:38:42 markus Exp $"); #include "xmalloc.h" #include "atomicio.h" @@ -249,6 +249,7 @@ main(argc, argv) ssh_program = xstrdup(optarg); break; case 'v': + addargs(&args, "-v"); verbose_mode = 1; break; case 'q': |