Opened 15 months ago
Closed 15 months ago
#5324 closed enhancement (fixed)
zlib-1.3
Reported by: | Bruce Dubbs | Owned by: | Bruce Dubbs |
---|---|---|---|
Priority: | normal | Milestone: | 12.1 |
Component: | Book | Version: | git |
Severity: | normal | Keywords: | |
Cc: |
Description
New minor version.
Change History (6)
comment:1 by , 15 months ago
follow-up: 3 comment:2 by , 15 months ago
There's a report on IRC
<r1c0n3r0> meh... OpenSSH fails with zlib1.3 installed, https://bugzilla.mindrot.org/show_bug.cgi?id=3604 , fix: https://github.com/openssh/openssh-portable/commit cb4ed12ffc332d1f72d054ed92655b5f1c38f621
(i've neither checked the fail nor the patch)
comment:3 by , 15 months ago
Replying to thomas:
There's a report on IRC
See comment 2
(i've neither checked the fail nor the patch)
We can just pass --without-zlib-version-check
instead of patching it. Anyway we know we don't have zlib < 1.2.3 (zlib-1.2.2.4 was released in 2004 :).
comment:4 by , 15 months ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:5 by , 15 months ago
If needed, openssh can be fixed with a sed.
configure.ac in openssh:
n = sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d); - if (n != 3 && n != 4) + if (n < 1) exit(1);
comment:6 by , 15 months ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fixed at commit 3864d235cfd3623f6a4765d9acd13caee62c6629
Note:
See TracTickets
for help on using tickets.
Version 1.3 has these key updates from 1.2.13: