summaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-12-21 14:12:20 -0500
committerNick Mathewson <nickm@torproject.org>2018-12-21 14:12:20 -0500
commitfd58e5e498f1c86732de8d9edf6777e7822abfe7 (patch)
treefb2adf9422e7d703eedc0584a8466acab1bc25a1 /src/app
parentab4395d08206d82f69512340cf5372d5121561ad (diff)
downloadtor-fd58e5e498f1c86732de8d9edf6777e7822abfe7.tar.gz
tor-fd58e5e498f1c86732de8d9edf6777e7822abfe7.zip
Fix priority on process subsystem level: it uses "net"
Diffstat (limited to 'src/app')
-rw-r--r--src/app/main/subsystem_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c
index 122f7af215..bd6be42145 100644
--- a/src/app/main/subsystem_list.c
+++ b/src/app/main/subsystem_list.c
@@ -33,10 +33,10 @@ const subsys_fns_t *tor_subsystems[] = {
&sys_logging, /* -90 */
&sys_time, /* -90 */
&sys_network, /* -90 */
- &sys_process, /* -80 */
&sys_compress, /* -70 */
&sys_crypto, /* -60 */
&sys_tortls, /* -50 */
+ &sys_process, /* -35 */
};
const unsigned n_tor_subsystems = ARRAY_LENGTH(tor_subsystems);