summaryrefslogtreecommitdiff
path: root/openssh-7.8p1-scp-ipv6.patch
diff options
context:
space:
mode:
Diffstat (limited to 'openssh-7.8p1-scp-ipv6.patch')
-rw-r--r--openssh-7.8p1-scp-ipv6.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/openssh-7.8p1-scp-ipv6.patch b/openssh-7.8p1-scp-ipv6.patch
deleted file mode 100644
index 8ae0948..0000000
--- a/openssh-7.8p1-scp-ipv6.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/scp.c b/scp.c
-index 60682c68..9344806e 100644
---- a/scp.c
-+++ b/scp.c
-@@ -714,7 +714,9 @@ toremote(int argc, char **argv)
- addargs(&alist, "%s", host);
- addargs(&alist, "%s", cmd);
- addargs(&alist, "%s", src);
-- addargs(&alist, "%s%s%s:%s",
-+ addargs(&alist,
-+ /* IPv6 address needs to be enclosed with sqare brackets */
-+ strchr(host, ':') != NULL ? "%s%s[%s]:%s" : "%s%s%s:%s",
- tuser ? tuser : "", tuser ? "@" : "",
- thost, targ);
- if (do_local_cmd(&alist) != 0)
-