summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/.git-dpm4
-rw-r--r--debian/changelog2
-rw-r--r--debian/patches/fix-case-sensitive-matching.patch41
-rw-r--r--debian/patches/series1
-rw-r--r--ssh.c2
5 files changed, 47 insertions, 3 deletions
diff --git a/debian/.git-dpm b/debian/.git-dpm
index 11c6ec01c..3455d7da0 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -1,6 +1,6 @@
1# see git-dpm(1) from git-dpm package 1# see git-dpm(1) from git-dpm package
2ee8d8b97cc2c6081df3af453a228992b87309ec4 2c662cd7269217e67b4c47ed4afdbe0ca8d355fd4
3ee8d8b97cc2c6081df3af453a228992b87309ec4 3c662cd7269217e67b4c47ed4afdbe0ca8d355fd4
49a975a9faed7c4f334e8c8490db3e77e102f2b21 49a975a9faed7c4f334e8c8490db3e77e102f2b21
59a975a9faed7c4f334e8c8490db3e77e102f2b21 59a975a9faed7c4f334e8c8490db3e77e102f2b21
6openssh_6.5p1.orig.tar.gz 6openssh_6.5p1.orig.tar.gz
diff --git a/debian/changelog b/debian/changelog
index 9e821ff25..ba32acdc7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ openssh (1:6.5p1-2) UNRELEASED; urgency=medium
2 2
3 * Only enable ssh.service for systemd, not both ssh.service and 3 * Only enable ssh.service for systemd, not both ssh.service and
4 ssh.socket. Thanks to Michael Biebl for spotting this. 4 ssh.socket. Thanks to Michael Biebl for spotting this.
5 * Backport upstream patch to unbreak case-sensitive matching of ssh_config
6 (closes: #738619).
5 7
6 -- Colin Watson <cjwatson@debian.org> Tue, 11 Feb 2014 10:41:26 +0000 8 -- Colin Watson <cjwatson@debian.org> Tue, 11 Feb 2014 10:41:26 +0000
7 9
diff --git a/debian/patches/fix-case-sensitive-matching.patch b/debian/patches/fix-case-sensitive-matching.patch
new file mode 100644
index 000000000..b6213962d
--- /dev/null
+++ b/debian/patches/fix-case-sensitive-matching.patch
@@ -0,0 +1,41 @@
1From c662cd7269217e67b4c47ed4afdbe0ca8d355fd4 Mon Sep 17 00:00:00 2001
2From: Damien Miller <djm@mindrot.org>
3Date: Tue, 4 Feb 2014 11:26:04 +1100
4Subject: Unbreak case-sensitive matching of ssh_config
5
6 - djm@cvs.openbsd.org 2014/02/04 00:24:29
7 [ssh.c]
8 delay lowercasing of hostname until right before hostname
9 canonicalisation to unbreak case-sensitive matching of ssh_config;
10 reported by Ike Devolder; ok markus@
11
12Origin: backport, https://anongit.mindrot.org/openssh.git/commit/?id=d56b44d2dfa093883a5c4e91be3f72d99946b170
13Bug-Debian: http://bugs.debian.org/738619
14Forwarded: not-needed
15Last-Update: 2014-02-11
16
17Patch-Name: fix-case-sensitive-matching.patch
18---
19 ssh.c | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/ssh.c b/ssh.c
23index 0cea713..5d5d4de 100644
24--- a/ssh.c
25+++ b/ssh.c
26@@ -780,7 +780,6 @@ main(int ac, char **av)
27 if (!host)
28 usage();
29
30- lowercase(host);
31 host_arg = xstrdup(host);
32
33 OpenSSL_add_all_algorithms();
34@@ -914,6 +913,7 @@ main(int ac, char **av)
35 }
36
37 /* If canonicalization requested then try to apply it */
38+ lowercase(host);
39 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
40 addrs = resolve_canonicalize(&host, options.port);
41 /*
diff --git a/debian/patches/series b/debian/patches/series
index 5d21e57d1..f571f76a5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -26,3 +26,4 @@ no-openssl-version-check.patch
26gnome-ssh-askpass2-icon.patch 26gnome-ssh-askpass2-icon.patch
27sigstop.patch 27sigstop.patch
28debian-config.patch 28debian-config.patch
29fix-case-sensitive-matching.patch
diff --git a/ssh.c b/ssh.c
index 0cea713ec..5d5d4de4d 100644
--- a/ssh.c
+++ b/ssh.c
@@ -780,7 +780,6 @@ main(int ac, char **av)
780 if (!host) 780 if (!host)
781 usage(); 781 usage();
782 782
783 lowercase(host);
784 host_arg = xstrdup(host); 783 host_arg = xstrdup(host);
785 784
786 OpenSSL_add_all_algorithms(); 785 OpenSSL_add_all_algorithms();
@@ -914,6 +913,7 @@ main(int ac, char **av)
914 } 913 }
915 914
916 /* If canonicalization requested then try to apply it */ 915 /* If canonicalization requested then try to apply it */
916 lowercase(host);
917 if (options.canonicalize_hostname != SSH_CANONICALISE_NO) 917 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
918 addrs = resolve_canonicalize(&host, options.port); 918 addrs = resolve_canonicalize(&host, options.port);
919 /* 919 /*