summaryrefslogtreecommitdiff
path: root/openssh-6.4p1-fromto-remote.patch
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2024-07-03 02:42:38 +0000
committerCoprDistGit <infra@openeuler.org>2024-07-03 02:42:38 +0000
commit3c362eae690284f325824e38431881825e32ffdd (patch)
treed2d0e11b92bf88d35c270559d268845d391a4703 /openssh-6.4p1-fromto-remote.patch
parent62f0a34c39a6846b6a86f2bbc7fb8c319bd46d94 (diff)
automatic import of openssh
Diffstat (limited to 'openssh-6.4p1-fromto-remote.patch')
-rw-r--r--openssh-6.4p1-fromto-remote.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/openssh-6.4p1-fromto-remote.patch b/openssh-6.4p1-fromto-remote.patch
deleted file mode 100644
index 4a7d849..0000000
--- a/openssh-6.4p1-fromto-remote.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/scp.c b/scp.c
-index d98fa67..25d347b 100644
---- a/scp.c
-+++ b/scp.c
-@@ -638,7 +638,10 @@ toremote(char *targ, int argc, char **argv)
- addargs(&alist, "%s", ssh_program);
- addargs(&alist, "-x");
- addargs(&alist, "-oClearAllForwardings=yes");
-- addargs(&alist, "-n");
-+ if (isatty(fileno(stdin)))
-+ addargs(&alist, "-t");
-+ else
-+ addargs(&alist, "-n");
- for (j = 0; j < remote_remote_args.num; j++) {
- addargs(&alist, "%s",
- remote_remote_args.list[j]);