mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
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.
This commit is contained in:
parent
ad906794b8
commit
f74521b0cd
1 changed files with 0 additions and 4 deletions
|
|
@ -891,11 +891,7 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c
|
||||||
ostringstream oss;
|
ostringstream oss;
|
||||||
|
|
||||||
for (vector<string>::const_iterator i = args.begin(); i != args.end();) {
|
for (vector<string>::const_iterator i = args.begin(); i != args.end();) {
|
||||||
#ifdef WIN32
|
|
||||||
oss << quote_string (*i);
|
|
||||||
#else
|
|
||||||
oss << *i;
|
oss << *i;
|
||||||
#endif
|
|
||||||
if (++i != args.end()) oss << ' ';
|
if (++i != args.end()) oss << ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue