From ee00dce91197eed361ee2db67b784a39c3b69cbe Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Thu, 25 Jul 2013 15:03:32 +1000 Subject: [PATCH] Remove windows specific quoting now that jack autostart works on windows This allows jack2 to autostart using the .jackdrc we write --- libs/ardour/jack_utils.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/ardour/jack_utils.cc b/libs/ardour/jack_utils.cc index d9e5f00cca..f37473c4e7 100644 --- a/libs/ardour/jack_utils.cc +++ b/libs/ardour/jack_utils.cc @@ -872,11 +872,7 @@ ARDOUR::get_jack_command_line_string (const JackCommandLineOptions& options, str ostringstream oss; for (vector::const_iterator i = args.begin(); i != args.end();) { -#ifdef PLATFORM_WINDOWS - oss << quote_string (*i); -#else oss << *i; -#endif if (++i != args.end()) oss << ' '; }