mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- markus@cvs.openbsd.org 2002/06/08 12:36:53
[scp.c] remove FallBackToRsh
This commit is contained in:
parent
7a7483d72e
commit
af0c6d6a8c
@ -15,6 +15,9 @@
|
|||||||
- markus@cvs.openbsd.org 2002/06/08 05:41:18
|
- markus@cvs.openbsd.org 2002/06/08 05:41:18
|
||||||
[ssh_config]
|
[ssh_config]
|
||||||
remove FallBackToRsh/UseRsh
|
remove FallBackToRsh/UseRsh
|
||||||
|
- markus@cvs.openbsd.org 2002/06/08 12:36:53
|
||||||
|
[scp.c]
|
||||||
|
remove FallBackToRsh
|
||||||
|
|
||||||
20020607
|
20020607
|
||||||
- (bal) Removed --{enable/disable}-suid-ssh
|
- (bal) Removed --{enable/disable}-suid-ssh
|
||||||
@ -846,4 +849,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2193 2002/06/09 20:05:35 mouring Exp $
|
$Id: ChangeLog,v 1.2194 2002/06/09 20:06:29 mouring Exp $
|
||||||
|
6
scp.c
6
scp.c
@ -75,7 +75,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: scp.c,v 1.88 2002/04/06 18:24:09 mouring Exp $");
|
RCSID("$OpenBSD: scp.c,v 1.89 2002/06/08 12:36:53 markus Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "atomicio.h"
|
#include "atomicio.h"
|
||||||
@ -230,7 +230,6 @@ main(argc, argv)
|
|||||||
addargs(&args, "ssh"); /* overwritten with ssh_program */
|
addargs(&args, "ssh"); /* overwritten with ssh_program */
|
||||||
addargs(&args, "-x");
|
addargs(&args, "-x");
|
||||||
addargs(&args, "-oForwardAgent no");
|
addargs(&args, "-oForwardAgent no");
|
||||||
addargs(&args, "-oFallBackToRsh no");
|
|
||||||
addargs(&args, "-oClearAllForwardings yes");
|
addargs(&args, "-oClearAllForwardings yes");
|
||||||
|
|
||||||
fflag = tflag = 0;
|
fflag = tflag = 0;
|
||||||
@ -365,8 +364,7 @@ toremote(targ, argc, argv)
|
|||||||
src = colon(argv[i]);
|
src = colon(argv[i]);
|
||||||
if (src) { /* remote to remote */
|
if (src) { /* remote to remote */
|
||||||
static char *ssh_options =
|
static char *ssh_options =
|
||||||
"-x -o'FallBackToRsh no' "
|
"-x -o'ClearAllForwardings yes'";
|
||||||
"-o'ClearAllForwardings yes'";
|
|
||||||
*src++ = 0;
|
*src++ = 0;
|
||||||
if (*src == 0)
|
if (*src == 0)
|
||||||
src = ".";
|
src = ".";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user