From f74521b0cdee78b108922f71dc480f5186260e88 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Mon, 21 Oct 2013 20:54:37 +1000 Subject: [PATCH] Remove command line string quoting when forming jack command line on windows This used to be necessary when we started the JACK server but now that we write a .jackdrc it only causes problems. I have fixed this before in some branch, must have been lost in a merge. --- libs/backends/jack/jack_utils.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/backends/jack/jack_utils.cc b/libs/backends/jack/jack_utils.cc index 331c164353..01af13fe9c 100644 --- a/libs/backends/jack/jack_utils.cc +++ b/libs/backends/jack/jack_utils.cc @@ -891,11 +891,7 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c ostringstream oss; for (vector::const_iterator i = args.begin(); i != args.end();) { -#ifdef WIN32 - oss << quote_string (*i); -#else oss << *i; -#endif if (++i != args.end()) oss << ' '; }