From c5ab8337def0547e8d40edb66f41095be440e7f0 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Thu, 15 Apr 2021 12:01:50 -0400 Subject: [PATCH] 2021-04-15 Fred Gleason * Fixed a bug in 'rdxport.cgi' that broke the build when compiling without the '--enable-rdxport-debug' switch. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ web/rdxport/rdxport.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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); }