Fixed bug when installing from the command line.
[nssm.git] / gui.cpp
diff --git a/gui.cpp b/gui.cpp
index 7cc5bc4..ca21ace 100644 (file)
--- a/gui.cpp
+++ b/gui.cpp
@@ -87,6 +87,8 @@ int install(HWND window) {
 \r
   nssm_service_t *service = alloc_nssm_service();\r
   if (service) {\r
+    set_nssm_service_defaults(service);\r
+\r
     /* Get service name. */\r
     if (! GetDlgItemText(window, IDC_NAME, service->name, sizeof(service->name))) {\r
       popup_message(MB_OK | MB_ICONEXCLAMATION, NSSM_GUI_MISSING_SERVICE_NAME);\r
@@ -115,7 +117,6 @@ int install(HWND window) {
     }\r
 \r
     /* Get stop method stuff. */\r
-    service->stop_method = ~0;\r
     check_stop_method(service, NSSM_STOP_METHOD_CONSOLE, IDC_METHOD_CONSOLE);\r
     check_stop_method(service, NSSM_STOP_METHOD_WINDOW, IDC_METHOD_WINDOW);\r
     check_stop_method(service, NSSM_STOP_METHOD_THREADS, IDC_METHOD_THREADS);\r
@@ -134,16 +135,6 @@ int install(HWND window) {
     check_io("stdin", service->stdin_path, sizeof(service->stdin_path), IDC_STDIN);\r
     check_io("stdout", service->stdout_path, sizeof(service->stdout_path), IDC_STDOUT);\r
     check_io("stderr", service->stderr_path, sizeof(service->stderr_path), IDC_STDERR);\r
-    /* I/O defaults. */\r
-    service->stdin_sharing = NSSM_STDIN_SHARING;\r
-    service->stdin_disposition = NSSM_STDIN_DISPOSITION;\r
-    service->stdin_flags = NSSM_STDIN_FLAGS;\r
-    service->stdout_sharing = NSSM_STDOUT_SHARING;\r
-    service->stdout_disposition = NSSM_STDOUT_DISPOSITION;\r
-    service->stdout_flags = NSSM_STDOUT_FLAGS;\r
-    service->stderr_sharing = NSSM_STDERR_SHARING;\r
-    service->stderr_disposition = NSSM_STDERR_DISPOSITION;\r
-    service->stderr_flags = NSSM_STDERR_FLAGS;\r
     /* Override stdout and/or stderr. */\r
     if (SendDlgItemMessage(tablist[NSSM_TAB_IO], IDC_TRUNCATE, BM_GETCHECK, 0, 0) & BST_CHECKED) {\r
       if (service->stdout_path[0]) service->stdout_disposition = CREATE_ALWAYS;\r