diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-28 21:07:19 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-28 21:07:19 +0000 |
commit | e2b1a77c3e03a8a8142dc033f74d9ba9f394f8ed (patch) | |
tree | 0a392bf000431c3bc1165be3bf5962485fa271b9 /ChangeLog | |
parent | b78f67dbf5964d5c8f9d67d0f40fc999fbee150c (diff) | |
download | tor-e2b1a77c3e03a8a8142dc033f74d9ba9f394f8ed.tar.gz tor-e2b1a77c3e03a8a8142dc033f74d9ba9f394f8ed.zip |
r12006@catbus: nickm | 2007-02-28 16:06:24 -0500
On mingw, use "%I64u" to printf/scanf 64-bit integers, instead of the usual GCC "%llu". This prevents a bug when saving 64-bit int configuration values on mingw; the high-order 32 bits would get truncated. If the value was then reloaded, disaster would occur. (Fixes bug 400 and maybe also bug 397.) Backport candidate.
svn:r9691
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -24,6 +24,11 @@ Changes in version 0.1.2.9-??? - 2007-??-?? of 2 as indicating that the server is completely bad; it sometimes means that the server is just bad for the request in question. (may fix the last of bug 326.) + - On mingw, use "%I64u" to printf/scanf 64-bit integers, instead of the + usual GCC "%llu". This prevents a bug when saving 64-bit int + configuration values on mingw; the high-order 32 bits would get + truncated. If the value was then reloaded, disaster would + occur. (Fixes bug 400 and maybe also bug 397.) Changes in version 0.1.2.8-beta - 2007-02-26 |