diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/.git-dpm | 4 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/patches/fix-regress-putty-transfer.patch | 37 | ||||
-rw-r--r-- | debian/patches/series | 1 |
4 files changed, 41 insertions, 2 deletions
diff --git a/debian/.git-dpm b/debian/.git-dpm index f73621e9d..c60a212e2 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 |
2 | e293f21da513a7db59fe1997c9e90e2e9cdbceda | 2 | bd081a1ae125c7c6b2cfec89746d1298a306ad78 |
3 | e293f21da513a7db59fe1997c9e90e2e9cdbceda | 3 | bd081a1ae125c7c6b2cfec89746d1298a306ad78 |
4 | 62f54f20bf351468e0124f63cc2902ee40d9b0e9 | 4 | 62f54f20bf351468e0124f63cc2902ee40d9b0e9 |
5 | 62f54f20bf351468e0124f63cc2902ee40d9b0e9 | 5 | 62f54f20bf351468e0124f63cc2902ee40d9b0e9 |
6 | openssh_7.6p1.orig.tar.gz | 6 | openssh_7.6p1.orig.tar.gz |
diff --git a/debian/changelog b/debian/changelog index f7a823c27..75eb0dd13 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -6,6 +6,7 @@ openssh (1:7.6p1-3) UNRELEASED; urgency=medium | |||
6 | installations should just enable GSSAPIAuthentication and | 6 | installations should just enable GSSAPIAuthentication and |
7 | GSSAPIKeyExchange in sshd_config (closes: #878626). | 7 | GSSAPIKeyExchange in sshd_config (closes: #878626). |
8 | * Support the "noudeb" build profile. | 8 | * Support the "noudeb" build profile. |
9 | * Fix putty-transfer regression test. | ||
9 | 10 | ||
10 | [ Anders Kaseorg ] | 11 | [ Anders Kaseorg ] |
11 | * debian/systemd/ssh-agent.service: Add missing dbus dependency. | 12 | * debian/systemd/ssh-agent.service: Add missing dbus dependency. |
diff --git a/debian/patches/fix-regress-putty-transfer.patch b/debian/patches/fix-regress-putty-transfer.patch new file mode 100644 index 000000000..cfec3a9d2 --- /dev/null +++ b/debian/patches/fix-regress-putty-transfer.patch | |||
@@ -0,0 +1,37 @@ | |||
1 | From bd081a1ae125c7c6b2cfec89746d1298a306ad78 Mon Sep 17 00:00:00 2001 | ||
2 | From: Colin Watson <cjwatson@debian.org> | ||
3 | Date: Tue, 16 Jan 2018 17:38:36 +0000 | ||
4 | Subject: Fix putty-transfer regression test | ||
5 | |||
6 | The test key file is still called putty.rsa2, not putty.rsa. | ||
7 | |||
8 | Forwarded: no | ||
9 | Last-Update: 2018-01-16 | ||
10 | |||
11 | Patch-Name: fix-regress-putty-transfer.patch | ||
12 | --- | ||
13 | regress/putty-transfer.sh | 4 ++-- | ||
14 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
15 | |||
16 | diff --git a/regress/putty-transfer.sh b/regress/putty-transfer.sh | ||
17 | index 32c79f9e..57e46540 100644 | ||
18 | --- a/regress/putty-transfer.sh | ||
19 | +++ b/regress/putty-transfer.sh | ||
20 | @@ -15,7 +15,7 @@ for c in 0 1 ; do | ||
21 | ${OBJ}/.putty/sessions/compression_$c | ||
22 | echo "Compression=$c" >> ${OBJ}/.putty/sessions/kex_$k | ||
23 | env HOME=$PWD ${PLINK} -load compression_$c -batch \ | ||
24 | - -i putty.rsa cat ${DATA} > ${COPY} | ||
25 | + -i putty.rsa2 cat ${DATA} > ${COPY} | ||
26 | if [ $? -ne 0 ]; then | ||
27 | fail "ssh cat $DATA failed" | ||
28 | fi | ||
29 | @@ -26,7 +26,7 @@ for c in 0 1 ; do | ||
30 | rm -f ${COPY} | ||
31 | dd if=$DATA obs=${s} 2> /dev/null | \ | ||
32 | env HOME=$PWD ${PLINK} -load compression_$c \ | ||
33 | - -batch -i putty.rsa \ | ||
34 | + -batch -i putty.rsa2 \ | ||
35 | "cat > ${COPY}" | ||
36 | if [ $? -ne 0 ]; then | ||
37 | fail "ssh cat $DATA failed" | ||
diff --git a/debian/patches/series b/debian/patches/series index 7b9d0e39b..01aa2c87c 100644 --- a/debian/patches/series +++ b/debian/patches/series | |||
@@ -27,3 +27,4 @@ seccomp-s390-flock-ipc.patch | |||
27 | seccomp-getuid-geteuid.patch | 27 | seccomp-getuid-geteuid.patch |
28 | seccomp-s390-ioctl-ep11-crypto.patch | 28 | seccomp-s390-ioctl-ep11-crypto.patch |
29 | permitopen-argument-handling.patch | 29 | permitopen-argument-handling.patch |
30 | fix-regress-putty-transfer.patch | ||