JACK: add support for device names with whitespace
[ardour.git] / libs / backends / jack / jack_utils.cc
index 92e19985a045a5f41e25090e33b17184d3617c4a..cda7a6d8e780b12b451f496faf56f5e6b5fe4914 100644 (file)
@@ -892,7 +892,11 @@ ARDOUR::get_jack_command_line_string (JackCommandLineOptions& options, string& c
        ostringstream oss;
 
        for (vector<string>::const_iterator i = args.begin(); i != args.end();) {
-               oss << *i;
+               if (i->find_first_of(' ') != string::npos) {
+                       oss << "\"" << *i << "\"";
+               } else {
+                       oss << *i;
+               }
                if (++i != args.end()) oss << ' ';
        }