2018-02-14 Fred Gleason <fredg@paravelsystems.com>

* Fixed a typo in an error message for the 'CopyAudio' web API call.
This commit is contained in:
Fred Gleason
2018-02-14 18:17:21 -05:00
parent 4d061877fd
commit 948ccf4d8f
2 changed files with 2 additions and 3 deletions

View File

@@ -16596,3 +16596,5 @@
2018-01-19 Fred Gleason <fredg@paravelsystems.com>
* Fixed a typo regarding the %D filepath wildcard in the Operations
Guide.
2018-02-14 Fred Gleason <fredg@paravelsystems.com>
* Fixed a typo in an error message for the 'CopyAudio' web API call.

View File

@@ -74,9 +74,6 @@ void Xport::CopyAudio()
unlink(RDCut::pathName(destination_cartnum,destination_cutnum));
if(link(RDCut::pathName(source_cartnum,source_cutnum),
RDCut::pathName(destination_cartnum,destination_cutnum))!=0) {
XmlExit("dst: "+RDCut::pathName(source_cartnum,source_cutnum)+" src: "+
RDCut::pathName(destination_cartnum,destination_cutnum),400,
"copyaudio.cpp",LINE_NUMBER);
XmlExit(strerror(errno),400,"copyaudio.cpp",LINE_NUMBER);
}
XmlExit("OK",200,"copyaudio.cpp",LINE_NUMBER);