| @@ -944,7 +944,7 @@ public: | |||||
| return true; | return true; | ||||
| #else | #else | ||||
| if (fClient == nullptr && clientName != nullptr) | if (fClient == nullptr && clientName != nullptr) | ||||
| fClient = jackbridge_client_open(truncatedClientName, JackNullOption, nullptr); | |||||
| fClient = jackbridge_client_open(truncatedClientName, JackNoStartServer, nullptr); | |||||
| if (fClient == nullptr) | if (fClient == nullptr) | ||||
| { | { | ||||
| @@ -1292,7 +1292,7 @@ public: | |||||
| else if (pData->options.processMode == ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS) | else if (pData->options.processMode == ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS) | ||||
| #endif | #endif | ||||
| { | { | ||||
| client = jackbridge_client_open(plugin->getName(), JackNullOption, nullptr); | |||||
| client = jackbridge_client_open(plugin->getName(), JackNoStartServer, nullptr); | |||||
| CARLA_SAFE_ASSERT_RETURN(client != nullptr, nullptr); | CARLA_SAFE_ASSERT_RETURN(client != nullptr, nullptr); | ||||
| @@ -1408,7 +1408,7 @@ public: | |||||
| CarlaEngineJackClient* const client((CarlaEngineJackClient*)plugin->getEngineClient()); | CarlaEngineJackClient* const client((CarlaEngineJackClient*)plugin->getEngineClient()); | ||||
| // we should not be able to do this, jack really needs to allow client rename | // we should not be able to do this, jack really needs to allow client rename | ||||
| if (jack_client_t* const jackClient = jackbridge_client_open(uniqueName, JackNullOption, nullptr)) | |||||
| if (jack_client_t* const jackClient = jackbridge_client_open(uniqueName, JackNoStartServer, nullptr)) | |||||
| { | { | ||||
| // get new client name | // get new client name | ||||
| uniqueName = jackbridge_get_client_name(jackClient); | uniqueName = jackbridge_get_client_name(jackClient); | ||||