Fix an instance of snprintf; don't use _snprintf directly

This commit is contained in:
Nick Mathewson
2012-12-19 16:51:53 -05:00
parent 65b90edbe4
commit b7cf7bd9ae
4 changed files with 8 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
o Minor bugfixes:
- Replace all calls to snprintf outside of src/ext with tor_snprintf.
Fix for bug 7304.
o Code simplification and refactoring:
- Remove the #define to replace snprintf with _snprintf on windows;
they have different semantics, and all of our callers should be
using tor_snprintf anyway. Partial fix for bug 7304.