diff options
author | Roger Dingledine <arma@torproject.org> | 2009-11-22 07:15:30 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-11-22 07:15:30 -0500 |
commit | 403f99eaa48b0374c9a21f624f81ecae521734b3 (patch) | |
tree | 50e3c0f67c80cdbc5a6a7ad8a410b375d8e61474 /src/common | |
parent | 7f3f88bed38758d1f6f72cd0864cf93809bb5440 (diff) | |
download | tor-403f99eaa48b0374c9a21f624f81ecae521734b3.tar.gz tor-403f99eaa48b0374c9a21f624f81ecae521734b3.zip |
add a minimum for CircuitStreamTimeout, plus a man page
plus some other unrelated touchups that have been sitting in my
sandbox
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c index a83f945459..9912080af6 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -81,7 +81,7 @@ should_log_function_name(log_domain_mask_t domain, int severity) /* All debugging messages occur in interesting places. */ return 1; case LOG_NOTICE: - case LOG_WARN: + case LOG_WARN: case LOG_ERR: /* We care about places where bugs occur. */ return (domain == LD_BUG); |