aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-09-25 16:35:02 +1000
committerteor <teor@torproject.org>2019-09-25 16:40:09 +1000
commitd30a042fa8348028e0bea6f3e46cba1ffbe5adcc (patch)
tree706db85bbdfb07452dddced9e5fd4c2bc26e24d1 /src/test/fuzz
parent1ad1e84b17267f04960b322effaf57ea8a9690c0 (diff)
downloadtor-d30a042fa8348028e0bea6f3e46cba1ffbe5adcc.tar.gz
tor-d30a042fa8348028e0bea6f3e46cba1ffbe5adcc.zip
test: Use SEVERITY_MASK_IDX() to find the LOG_* mask indexes
In the unit tests and fuzzers. Fixes bug 31334; bugfix on 0.2.5.2-alpha.
Diffstat (limited to 'src/test/fuzz')
-rw-r--r--src/test/fuzz/fuzzing_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/fuzzing_common.c b/src/test/fuzz/fuzzing_common.c
index 862acb2b35..e269c36b42 100644
--- a/src/test/fuzz/fuzzing_common.c
+++ b/src/test/fuzz/fuzzing_common.c
@@ -167,7 +167,7 @@ main(int argc, char **argv)
memset(&s, 0, sizeof(s));
set_log_severity_config(loglevel, LOG_ERR, &s);
/* ALWAYS log bug warnings. */
- s.masks[LOG_WARN-LOG_ERR] |= LD_BUG;
+ s.masks[SEVERITY_MASK_IDX(LOG_WARN)] |= LD_BUG;
add_stream_log(&s, "", fileno(stdout));
}