diff options
author | Nick Mathewson <nickm@torproject.org> | 2021-05-07 13:11:00 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2021-05-07 13:11:00 -0400 |
commit | 27e5e33d2ca35de89d1f365a460b0b58e924ef12 (patch) | |
tree | acf5f70acbc2391785e13ad3df14427dec458e95 | |
parent | 671b05edfc4c9d5fdc67b64a5723b74909ea8add (diff) | |
download | tor-27e5e33d2ca35de89d1f365a460b0b58e924ef12.tar.gz tor-27e5e33d2ca35de89d1f365a460b0b58e924ef12.zip |
Fold in the last-minute fixes (0.4.5)tor-0.4.5.8
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | changes/bug40380 | 3 | ||||
-rw-r--r-- | changes/ticket40382 | 6 |
3 files changed, 10 insertions, 9 deletions
@@ -2,6 +2,12 @@ Changes in version 0.4.5.8 - 2021-05-10 Tor 0.4.5.8 fixes several bugs in earlier version, backporting fixes from the 0.4.6.x series. + o Minor features (compatibility, Linux seccomp sandbox, backport from 0.4.6.3-rc): + - Add a workaround to enable the Linux sandbox to work correctly + with Glibc 2.33. This version of Glibc has started using the + fstatat() system call, which previously our sandbox did not allow. + Closes ticket 40382; see the ticket for a discussion of trade-offs. + o Minor features (compilation, backport from 0.4.6.3-rc): - Make the autoconf script build correctly with autoconf versions 2.70 and later. Closes part of ticket 40335. @@ -34,6 +40,10 @@ Changes in version 0.4.5.8 - 2021-05-10 when listing a client connection from the DoS defenses subsystem. Fixes bug 40345; bugfix on 0.4.3.4-rc. + o Minor bugfixes (compiler warnings, backport from 0.4.6.3-rc): + - Fix an indentation problem that led to a warning from GCC 11.1.1. + Fixes bug 40380; bugfix on 0.3.0.1-alpha. + o Minor bugfixes (controller, backport from 0.4.6.1-alpha): - Fix a "BUG" warning that would appear when a controller chooses the first hop for a circuit, and that circuit completes. Fixes bug diff --git a/changes/bug40380 b/changes/bug40380 deleted file mode 100644 index 24d2876b7d..0000000000 --- a/changes/bug40380 +++ /dev/null @@ -1,3 +0,0 @@ - o Minor bugfixes (compiler warnings): - - Fix an indentation problem that led to a warning from GCC 11.1.1. - Fixes bug 40380; bugfix on 0.3.0.1-alpha. diff --git a/changes/ticket40382 b/changes/ticket40382 deleted file mode 100644 index 5ac1b771b9..0000000000 --- a/changes/ticket40382 +++ /dev/null @@ -1,6 +0,0 @@ - o Minor features (compatibility, Linux seccomp sandbox): - - Add a workaround to enable the Linux sandbox to work correctly - on systems running Glibc 2.33. These versions have started - using the fstatat() system call, which previously our sandbox did not - allow. - Closes ticket 40382; see the ticket for a discussion of tradeoffs. |