diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-04-19 16:37:26 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-04-19 16:37:26 -0400 |
commit | af9dd4af02f2cfec3e5d71f310e310f41560ee0b (patch) | |
tree | 2d543f9603c8eaa7d90c5240a8a5012357dd48cd /changes | |
parent | 84924fcd30ba862e1177c17400ffa496cea00db0 (diff) | |
download | tor-af9dd4af02f2cfec3e5d71f310e310f41560ee0b.tar.gz tor-af9dd4af02f2cfec3e5d71f310e310f41560ee0b.zip |
Fix two compile-blockers in tor_vasprintf().
1) mingw doesn't have _vscprintf(); mingw instead has a working snprintf.
2) windows compilers that _do_ have a working _vscprintf spell it so; they do
not spell it _vcsprintf().
Diffstat (limited to 'changes')
-rw-r--r-- | changes/fix_vscprintf_compile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/fix_vscprintf_compile b/changes/fix_vscprintf_compile new file mode 100644 index 0000000000..47c486b483 --- /dev/null +++ b/changes/fix_vscprintf_compile @@ -0,0 +1,3 @@ + o Major bugfixes: + - Fix two typos in tor_vasprintf() that prevented compilation in + Windows.
\ No newline at end of file |