From 79a0efb50decd987e978f6879700621974e37236 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Tue, 7 Feb 2017 08:46:24 -0500 Subject: [PATCH] 2017-02-07 Fred Gleason * Fixed a bug in 'web/rdxport/logs.cpp' the caused the 'SaveLog' web method to fail. --- ChangeLog | 3 +++ web/rdxport/logs.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 089b0288..d342dc79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15560,3 +15560,6 @@ 'libfaad.so.2' in 'cae/cae.cpp' and 'lib/rdmp4.cpp'. * Changed the DLL load target for mp4v2 from 'libmp4v2.so' to 'libmp4v2.so.2' in 'cae/cae.cpp' and 'lib/rdaudioconvert.cpp'. +2017-02-07 Fred Gleason + * Fixed a bug in 'web/rdxport/logs.cpp' the caused the 'SaveLog' + web method to fail. diff --git a/web/rdxport/logs.cpp b/web/rdxport/logs.cpp index 093909d9..2cec2416 100644 --- a/web/rdxport/logs.cpp +++ b/web/rdxport/logs.cpp @@ -259,7 +259,7 @@ void Xport::SaveLog() for(int i=0;iinsert(i,1); RDLogLine *ll=logevt->logLine(i); - QString line=QString().sprintf("LINE%d_",i); + QString line=QString().sprintf("LINE%d",i); QString str; int integer1; int integer2;