aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-11-22 07:15:30 -0500
committerRoger Dingledine <arma@torproject.org>2009-11-22 07:15:30 -0500
commit403f99eaa48b0374c9a21f624f81ecae521734b3 (patch)
tree50e3c0f67c80cdbc5a6a7ad8a410b375d8e61474 /src/common
parent7f3f88bed38758d1f6f72cd0864cf93809bb5440 (diff)
downloadtor-403f99eaa48b0374c9a21f624f81ecae521734b3.tar
tor-403f99eaa48b0374c9a21f624f81ecae521734b3.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c
index a83f94545..9912080af 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);