diff options
author | teor <teor@torproject.org> | 2019-09-10 08:44:35 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-09-10 08:44:35 +1000 |
commit | f1c57cd1e5d8ae88f28f764fef7f17081ebf2961 (patch) | |
tree | b2bd99cccd24944cb5b8be3607db58f08bac135e /src/app/main | |
parent | 7e22d9934658c27ba0d45455959f46207a190649 (diff) | |
download | tor-f1c57cd1e5d8ae88f28f764fef7f17081ebf2961.tar.gz tor-f1c57cd1e5d8ae88f28f764fef7f17081ebf2961.zip |
main: remove level number comments from the subsystem list (0.4.1)
Part of 31615.
Diffstat (limited to 'src/app/main')
-rw-r--r-- | src/app/main/subsystem_list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c index c637887153..989b0d6f87 100644 --- a/src/app/main/subsystem_list.c +++ b/src/app/main/subsystem_list.c @@ -52,13 +52,13 @@ const subsys_fns_t *tor_subsystems[] = { &sys_ocirc_event, &sys_btrack, - &sys_mainloop, /* 5 */ - &sys_or, /* 20 */ + &sys_mainloop, + &sys_or, - &sys_relay, /* 50 */ + &sys_relay, #ifdef HAVE_MODULE_DIRAUTH - &sys_dirauth, /* 70 */ + &sys_dirauth, #endif }; |