aboutsummaryrefslogtreecommitdiff
path: root/src/or/cpuworker.c
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-10-29 19:41:24 +0200
committerSebastian Hahn <sebastian@torproject.org>2010-11-10 15:48:26 +0100
commitb9cac605abf029d9f0eb3d83a5f64f5b484d61c1 (patch)
tree55acc332c2ca5360f5d531f5f97aee5b5c5b6821 /src/or/cpuworker.c
parent13a7e8bea3b9d37b1bfd5e3a3ea14dd650be632e (diff)
downloadtor-b9cac605abf029d9f0eb3d83a5f64f5b484d61c1.tar
tor-b9cac605abf029d9f0eb3d83a5f64f5b484d61c1.tar.gz
Synx manpage and source wrt option capitalization
We had a spelling discrepancy between the manpage and the source code for some option. Resolve these in favor of the manpage, because it makes more sense (for example, HTTP should be capitalized).
Diffstat (limited to 'src/or/cpuworker.c')
-rw-r--r--src/or/cpuworker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c
index 6f943d78b..ae8d69f6e 100644
--- a/src/or/cpuworker.c
+++ b/src/or/cpuworker.c
@@ -367,7 +367,7 @@ spawn_cpuworker(void)
static void
spawn_enough_cpuworkers(void)
{
- int num_cpuworkers_needed = get_options()->NumCpus;
+ int num_cpuworkers_needed = get_options()->NumCPUs;
if (num_cpuworkers_needed < MIN_CPUWORKERS)
num_cpuworkers_needed = MIN_CPUWORKERS;