summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index fc7236914f..62cb96f0fa 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -542,7 +542,7 @@ ExportHandler::write_cue_header (CDMarkerStatus & status)
status.out << "REM Cue file generated by " << PROGRAM_NAME << endl;
if (barcode != "")
- status.out << "CATALOG " << barcode << endl;
+ status.out << "CATALOG \"" << barcode << "\"" << endl;
if (album_artist != "")
status.out << "PERFORMER " << cue_escape_cdtext (album_artist) << endl;
@@ -591,7 +591,7 @@ ExportHandler::write_toc_header (CDMarkerStatus & status)
string album_title = SessionMetadata::Metadata()->album();
if (barcode != "")
- status.out << "CATALOG " << barcode << endl;
+ status.out << "CATALOG \"" << barcode << "\"" << endl;
if (album_title != "")
title = album_title;