Skip to content
Snippets Groups Projects
Commit a32ca313 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Merge branch 'maint-0.2.7' into maint-0.2.8

parents f2580640 5854b198
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (compilation):
- Cause the unit tests to compile correctly on mingw64 versions
that lack sscanf. Fixes bug 19213. Bugfix on 0.2.7.1-alpha.
......@@ -4679,7 +4679,7 @@ test_util_writepid(void *arg)
contents = read_file_to_str(fname, 0, NULL);
tt_assert(contents);
int n = sscanf(contents, "%lu\n%c", &pid, &c);
int n = tor_sscanf(contents, "%lu\n%c", &pid, &c);
tt_int_op(n, OP_EQ, 1);
#ifdef _WIN32
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment