mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 23:53:32 +01:00
Merge remote-tracking branch 'origin/maint-0.2.2'
This commit is contained in:
commit
929074b368
5
changes/bug3963
Normal file
5
changes/bug3963
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- When configuring, starting, or stopping an NT service, stop
|
||||||
|
immediately after the service configuration attempt has succeeded
|
||||||
|
or failed. Fixes bug3963; bugfix on 0.2.0.7-alpha.
|
||||||
|
|
@ -727,6 +727,7 @@ nt_service_parse_options(int argc, char **argv, int *should_exit)
|
|||||||
if ((argc >= 3) &&
|
if ((argc >= 3) &&
|
||||||
(!strcmp(argv[1], "-service") || !strcmp(argv[1], "--service"))) {
|
(!strcmp(argv[1], "-service") || !strcmp(argv[1], "--service"))) {
|
||||||
nt_service_loadlibrary();
|
nt_service_loadlibrary();
|
||||||
|
*should_exit = 1;
|
||||||
if (!strcmp(argv[2], "install"))
|
if (!strcmp(argv[2], "install"))
|
||||||
return nt_service_install(argc, argv);
|
return nt_service_install(argc, argv);
|
||||||
if (!strcmp(argv[2], "remove"))
|
if (!strcmp(argv[2], "remove"))
|
||||||
@ -736,7 +737,6 @@ nt_service_parse_options(int argc, char **argv, int *should_exit)
|
|||||||
if (!strcmp(argv[2], "stop"))
|
if (!strcmp(argv[2], "stop"))
|
||||||
return nt_service_cmd_stop();
|
return nt_service_cmd_stop();
|
||||||
printf("Unrecognized service command '%s'\n", argv[2]);
|
printf("Unrecognized service command '%s'\n", argv[2]);
|
||||||
*should_exit = 1;
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (argc >= 2) {
|
if (argc >= 2) {
|
||||||
|
Loading…
Reference in New Issue
Block a user