aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-11-26 16:57:46 +0000
committerNick Mathewson <nickm@torproject.org>2008-11-26 16:57:46 +0000
commit651a0a2fb5856a0e14e745b33a8d3d97387df862 (patch)
treefdeff277d75ce5963c76ef7b365c898e69522792 /ChangeLog
parent4cddcf887362d3a5c8f938694ba413f08ee6311c (diff)
downloadtor-651a0a2fb5856a0e14e745b33a8d3d97387df862.tar
tor-651a0a2fb5856a0e14e745b33a8d3d97387df862.tar.gz
Stop marking bsearch_idx as pure; it is not.
svn:r17393
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6a9060526..5d2975034 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,9 @@ Changes in version 0.2.1.8-alpha - 2008-??-??
rest, and don't automatically fail.
- Use fcntl() for locking when flock() is not available. Should fix
compilation on Solaris. Should fix Bug 873. Bugfix on 0.2.1.6-alpha.
+ - Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug
+ could make gcc generate non-functional binary search code. Bugfix
+ on 0.2.0.10-alpha.
o Minor features (controller):
- Return circuit purposes in response to GETINFO circuit-status. Fixes