Commit 3af943dc authored by Nick Mathewson's avatar Nick Mathewson 🐚
Browse files

Merge remote-tracking branch 'tor-github/pr/745' into maint-0.4.0

parents d8409ccb 389ee834
Loading
Loading
Loading
Loading

changes/bug29144

0 → 100644
+5 −0
Original line number Diff line number Diff line
  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.
+1 −1
Original line number Diff line number Diff line
@@ -1541,7 +1541,7 @@ connection_listener_new(const struct sockaddr *listensockaddr,
               conn_type_to_string(type), conn->address);
  } else {
    log_notice(LD_NET, "Opened %s on %s",
               conn_type_to_string(type), fmt_addrport(&addr, usePort));
               conn_type_to_string(type), fmt_addrport(&addr, gotPort));
  }
  return conn;