diff options
author | teor <teor@torproject.org> | 2019-09-25 16:35:02 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-09-25 16:40:09 +1000 |
commit | d30a042fa8348028e0bea6f3e46cba1ffbe5adcc (patch) | |
tree | 706db85bbdfb07452dddced9e5fd4c2bc26e24d1 /src/test/test_logging.c | |
parent | 1ad1e84b17267f04960b322effaf57ea8a9690c0 (diff) | |
download | tor-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/test_logging.c')
-rw-r--r-- | src/test/test_logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_logging.c b/src/test/test_logging.c index bb7018fe1c..203ce64e32 100644 --- a/src/test/test_logging.c +++ b/src/test/test_logging.c @@ -35,7 +35,7 @@ test_get_sigsafe_err_fds(void *arg) set_log_severity_config(LOG_WARN, LOG_ERR, &include_bug); set_log_severity_config(LOG_WARN, LOG_ERR, &no_bug); - no_bug.masks[0] &= ~(LD_BUG|LD_GENERAL); + no_bug.masks[SEVERITY_MASK_IDX(LOG_ERR)] &= ~(LD_BUG|LD_GENERAL); set_log_severity_config(LOG_INFO, LOG_NOTICE, &no_bug2); /* Add some logs; make sure the output is as expected. */ |