- 21 Aug, 2014 1 commit
-
-
Nick Mathewson authored
(Coverity thinks that "if (a) X; else X;" is probably a bug.) [Coverity CID 1232086]
-
- 20 Aug, 2014 18 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
-
-
-
Nick Mathewson authored
-
Nick Mathewson authored
Fixes issue 10116
-
Nick Mathewson authored
-
Nick Mathewson authored
Previously, we had documented it to return -1 or 0, when in fact lseek returns -1 or the new position in the file. This is harmless, since we were only checking for negative values when we used tor_fd_seekend.
-
Nick Mathewson authored
Closes ticket 12061. Based on a patch from "carlo von lynX" on tor-dev at https://lists.torproject.org/pipermail/tor-dev/2014-April/006705.html
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Closes 12908; see #8742
-
Nick Mathewson authored
-
-
Nick Mathewson authored
-
- 18 Aug, 2014 4 commits
-
-
Nick Mathewson authored
Two bugs here: 1) We didn't add EXTEND2/EXTENDED2 to relay_command_to_string(). 2) relay_command_to_string() didn't log the value of unrecognized commands. Both fixed here.
-
Nick Mathewson authored
-
Nick Mathewson authored
This will fix the warning "/src/or/config.c:6854:48: error: unused parameter 'group_readable'" that I introduced while fixing 12864. Bug not in any released version of Tor.
-
Nick Mathewson authored
-
- 15 Aug, 2014 13 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
Breaks compilation. Used this coccinelle script: @@ identifier c; typedef circuit_t; iterator name TOR_LIST_FOREACH; iterator name SMARTLIST_FOREACH_BEGIN; statement S; @@ - circuit_t *c; ... - TOR_LIST_FOREACH(c, \(&global_circuitlist\|circuit_get_global_list()\), head) + SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, c) S + SMARTLIST_FOREACH_END(c);
-
George Kadianakis authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
Looks like I forgot to commit this.
-
Nick Mathewson authored
These got committed by mistake.
-
Nick Mathewson authored
Spotted by "epilys"
-
Nick Mathewson authored
We don't actually allow a group name, but the documentation implied that we did.
-
Nick Mathewson authored
When we merged the cookieauthfile creation logic in 33c3e60a, we accidentally took out this feature. Fixes bug 12864, bugfix on 0.2.5.1-alpha. Also adds an ExtORPortCookieAuthFileGroupReadable, since there's no reason not to.
-
- 14 Aug, 2014 2 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
Conflicts: src/or/circuitbuild.c
-
- 13 Aug, 2014 2 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
This fixes a double-define introduced in 28538069
-