diff options
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index 6ac83e1728..74b7b7dcda 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1645,11 +1645,14 @@ int tor_main(int argc, char *argv[]) { nt_service_main(); return 0; } -#else +#endif if (tor_init(argc, argv)<0) return -1; switch (get_options()->command) { case CMD_RUN_TOR: +#ifdef MS_WINDOWS_SERVICE + service_status.dwCurrentState = SERVICE_RUNNING; +#endif do_main_loop(); break; case CMD_LIST_FINGERPRINT: @@ -1664,6 +1667,5 @@ int tor_main(int argc, char *argv[]) { } tor_cleanup(); return -1; -#endif } |