Fixed bug in starting (when not testing) synergy from launcher
on windows NT. It was trying to start it as a service.
This commit is contained in:
parent
3c29242208
commit
82552698f7
|
@ -514,6 +514,11 @@ getCommandLine(HWND hwnd, bool testing)
|
||||||
cmdLine += " -z --no-restart --no-daemon";
|
cmdLine += " -z --no-restart --no-daemon";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// can't start as service on NT
|
||||||
|
else if (!CArchMiscWindows::isWindows95Family()) {
|
||||||
|
cmdLine += " --no-daemon";
|
||||||
|
}
|
||||||
|
|
||||||
// get the server name
|
// get the server name
|
||||||
CString server;
|
CString server;
|
||||||
bool isClient = isClientChecked(hwnd);
|
bool isClient = isClientChecked(hwnd);
|
||||||
|
|
Loading…
Reference in New Issue