diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-10-29 19:41:24 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-11-10 15:48:26 +0100 |
commit | b9cac605abf029d9f0eb3d83a5f64f5b484d61c1 (patch) | |
tree | 55acc332c2ca5360f5d531f5f97aee5b5c5b6821 /src/or/cpuworker.c | |
parent | 13a7e8bea3b9d37b1bfd5e3a3ea14dd650be632e (diff) | |
download | tor-b9cac605abf029d9f0eb3d83a5f64f5b484d61c1.tar.gz tor-b9cac605abf029d9f0eb3d83a5f64f5b484d61c1.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 6f943d78b8..ae8d69f6ec 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; |