diff options
| author | selsta <selsta@sent.at> | 2026-02-24 16:08:45 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2026-02-24 16:16:09 +0100 |
| commit | 53121587562af1abef3680060c240068a1ff2c97 (patch) | |
| tree | 9313bb7097957507971acb38f50705ff086ebe1f /src | |
| parent | dbcc7d212c094bd1a45f7291dbb99a4b4627a96d (diff) | |
| download | monzero-core-53121587562af1abef3680060c240068a1ff2c97.tar.gz monzero-core-53121587562af1abef3680060c240068a1ff2c97.tar.xz monzero-core-53121587562af1abef3680060c240068a1ff2c97.zip | |
windows_service: quote service executable path
Diffstat (limited to 'src')
| -rw-r--r-- | src/daemonizer/windows_service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemonizer/windows_service.cpp b/src/daemonizer/windows_service.cpp index 846f6c071..c2f6f0107 100644 --- a/src/daemonizer/windows_service.cpp +++ b/src/daemonizer/windows_service.cpp @@ -172,7 +172,7 @@ bool install_service( ) { std::string command = epee::string_tools::get_current_module_path(); - std::string full_command = command + arguments; + std::string full_command = "\"" + command + "\"" + arguments; service_handle p_manager{ OpenSCManager( |
