]> andersk Git - openssh.git/commitdiff
- stevesk@cvs.openbsd.org 2001/09/12 18:18:25
authormouring <mouring>
Wed, 12 Sep 2001 18:45:09 +0000 (18:45 +0000)
committermouring <mouring>
Wed, 12 Sep 2001 18:45:09 +0000 (18:45 +0000)
     [scp.c]
     don't forward agent for non third-party copies; ok markus@

ChangeLog
scp.c

index 0b04d2c207e7fe2d1d5d8a3ca1cd8031671bd228..636baa0de234cedc4f79dab0c92463dff3dee325 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -83,6 +83,9 @@
    - deraadt@cvs.openbsd.org 2001/09/05 06:23:07
      [scp.1 sftp.1 ssh.1 ssh-agent.1 sshd.8 ssh-keygen.1 ssh-keyscan.1]
      avoid first person in manual pages
+   - stevesk@cvs.openbsd.org 2001/09/12 18:18:25
+     [scp.c]
+     don't forward agent for non third-party copies; ok markus@
 
 20010815
  - (bal) Fixed stray code in readconf.c that went in by mistake.
diff --git a/scp.c b/scp.c
index 9b0a23f0e9f3c78a01a4f423964b869fe12d617a..654496847c1c09130bc19ec88f3175bdf784ca40 100644 (file)
--- a/scp.c
+++ b/scp.c
@@ -75,7 +75,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: scp.c,v 1.81 2001/08/29 20:44:03 markus Exp $");
+RCSID("$OpenBSD: scp.c,v 1.82 2001/09/12 18:18:25 stevesk Exp $");
 
 #include "xmalloc.h"
 #include "atomicio.h"
@@ -237,6 +237,7 @@ main(argc, argv)
        args.list = NULL;
        addargs(&args, "ssh");          /* overwritten with ssh_program */
        addargs(&args, "-x");
+       addargs(&args, "-oForwardAgent no");
        addargs(&args, "-oFallBackToRsh no");
 
        fflag = tflag = 0;
This page took 0.136316 seconds and 5 git commands to generate.