summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--scp.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 828992558..655c9ece6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -83,6 +83,9 @@
83 - deraadt@cvs.openbsd.org 2001/09/05 06:23:07 83 - deraadt@cvs.openbsd.org 2001/09/05 06:23:07
84 [scp.1 sftp.1 ssh.1 ssh-agent.1 sshd.8 ssh-keygen.1 ssh-keyscan.1] 84 [scp.1 sftp.1 ssh.1 ssh-agent.1 sshd.8 ssh-keygen.1 ssh-keyscan.1]
85 avoid first person in manual pages 85 avoid first person in manual pages
86 - stevesk@cvs.openbsd.org 2001/09/12 18:18:25
87 [scp.c]
88 don't forward agent for non third-party copies; ok markus@
86 89
8720010815 9020010815
88 - (bal) Fixed stray code in readconf.c that went in by mistake. 91 - (bal) Fixed stray code in readconf.c that went in by mistake.
@@ -6406,4 +6409,4 @@
6406 - Wrote replacements for strlcpy and mkdtemp 6409 - Wrote replacements for strlcpy and mkdtemp
6407 - Released 1.0pre1 6410 - Released 1.0pre1
6408 6411
6409$Id: ChangeLog,v 1.1509 2001/09/12 18:35:30 mouring Exp $ 6412$Id: ChangeLog,v 1.1510 2001/09/12 18:45:09 mouring Exp $
diff --git a/scp.c b/scp.c
index 9b0a23f0e..654496847 100644
--- a/scp.c
+++ b/scp.c
@@ -75,7 +75,7 @@
75 */ 75 */
76 76
77#include "includes.h" 77#include "includes.h"
78RCSID("$OpenBSD: scp.c,v 1.81 2001/08/29 20:44:03 markus Exp $"); 78RCSID("$OpenBSD: scp.c,v 1.82 2001/09/12 18:18:25 stevesk Exp $");
79 79
80#include "xmalloc.h" 80#include "xmalloc.h"
81#include "atomicio.h" 81#include "atomicio.h"
@@ -237,6 +237,7 @@ main(argc, argv)
237 args.list = NULL; 237 args.list = NULL;
238 addargs(&args, "ssh"); /* overwritten with ssh_program */ 238 addargs(&args, "ssh"); /* overwritten with ssh_program */
239 addargs(&args, "-x"); 239 addargs(&args, "-x");
240 addargs(&args, "-oForwardAgent no");
240 addargs(&args, "-oFallBackToRsh no"); 241 addargs(&args, "-oFallBackToRsh no");
241 242
242 fflag = tflag = 0; 243 fflag = tflag = 0;