diff --git a/ChangeLog b/ChangeLog index 26c88a69..ea7fda10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21436,3 +21436,6 @@ directives in the rd.conf(5) man page. 2021-04-15 Fred Gleason * Fixed bugs that broke the build when MP4 support was enabled. +2021-04-15 Fred Gleason + * Fixed a bug in 'rdxport.cgi' that broke the build when compiling + without the '--enable-rdxport-debug' switch. diff --git a/web/rdxport/rdxport.cpp b/web/rdxport/rdxport.cpp index 87118d07..e97b7c6a 100644 --- a/web/rdxport/rdxport.cpp +++ b/web/rdxport/rdxport.cpp @@ -465,7 +465,7 @@ void Xport::XmlExit(const QString &str,int code,const QString &srcfile, RDXMLResult(str.toUtf8(),code,err); } #else - RDXMLResult(str,code,err); + RDXMLResult(str.toUtf8(),code,err); #endif // RDXPORT_DEBUG exit(0); }