summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-15 15:58:32 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-15 15:58:32 +0100
commitc13377e0eb28a29c3d22e02a8b3ee40ca5e11ad1 (patch)
treefd6b704ac05ae826ddef6aea4efff9ba2c2d7aeb /src
parentec47f77aa08081ff427474e812853916e941539b (diff)
Put quotes around the name now that it might have spaces in it.
Diffstat (limited to 'src')
-rw-r--r--src/lib/make_dcp_job.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/make_dcp_job.cc b/src/lib/make_dcp_job.cc
index 81deb835d..21b8549be 100644
--- a/src/lib/make_dcp_job.cc
+++ b/src/lib/make_dcp_job.cc
@@ -74,7 +74,7 @@ MakeDCPJob::run ()
stringstream c;
c << "cd \"" << dcp_path << "\" && "
- << " opendcp_xml -d -a " << _fs->name
+ << " opendcp_xml -d -a \"" << _fs->name << "\""
<< " -t \"" << _fs->name << "\""
<< " -k " << _fs->dcp_content_type->opendcp_name()
<< " --reel \"" << _fs->file ("video.mxf") << "\"";