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().
This commit is contained in:
Nick Mathewson
2010-04-19 16:37:26 -04:00
parent 84924fcd30
commit af9dd4af02
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
o Major bugfixes:
- Fix two typos in tor_vasprintf() that prevented compilation in
Windows.