aboutsummaryrefslogtreecommitdiff
path: root/changes/bug29144
diff options
context:
space:
mode:
authorKris Katterjohn <katterjohn@gmail.com>2019-01-21 13:12:53 -0600
committerteor <teor@torproject.org>2019-03-01 12:34:21 +1000
commit389ee834b6795ccabbe3d4c7edfdaf8d89696438 (patch)
treebb594e5938a74374e77ce23720d4f6e835b48039 /changes/bug29144
parentde0969ef7816d54acdcc9f1e2960d8bbc4400ecf (diff)
downloadtor-389ee834b6795ccabbe3d4c7edfdaf8d89696438.tar.gz
tor-389ee834b6795ccabbe3d4c7edfdaf8d89696438.zip
Log the correct "auto" port number for listening sockets
When "auto" was used for the port number for a listening socket, the message logged after opening the socket would incorrectly say port 0 instead of the actual port used. Fixes bug 29144; bugfix on 0.3.5.1-alpha Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
Diffstat (limited to 'changes/bug29144')
-rw-r--r--changes/bug291445
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug29144 b/changes/bug29144
new file mode 100644
index 0000000000..5801224f14
--- /dev/null
+++ b/changes/bug29144
@@ -0,0 +1,5 @@
+ o Minor bugfixes (logging):
+ - Log the correct port number for listening sockets when "auto" is
+ used to let Tor pick the port number. Previously, port 0 was
+ logged instead of the actual port number. Fixes bug 29144;
+ bugfix on 0.3.5.1-alpha. Patch from Kris Katterjohn.